Disable heap and stack tests for Cortex A

These tests are not compatible with Cortex A due to __get_MSP usage.
pull/5342/head
Bartek Szatkowski 2017-09-05 14:30:41 +01:00
parent 048a896741
commit 8eebcff166
1 changed files with 5 additions and 0 deletions

View File

@ -14,6 +14,11 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
#if defined(TARGET_CORTEX_A)
  #error [NOT_SUPPORTED] This function not supported for this target
#endif
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>