summaryrefslogtreecommitdiff
path: root/apps/examples/nxflat/tests
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-14 08:19:46 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-14 08:19:46 -0600
commitbb1d597d3bbb2f5823d7e15ce8495495d4c79a78 (patch)
treeaed7cc91a0620b4649e010d3416b1388a0fc525a /apps/examples/nxflat/tests
parent26d0141f155734ffdaad2260d9335061fe81abc1 (diff)
downloadnuttx-bb1d597d3bbb2f5823d7e15ce8495495d4c79a78.tar.gz
nuttx-bb1d597d3bbb2f5823d7e15ce8495495d4c79a78.tar.bz2
nuttx-bb1d597d3bbb2f5823d7e15ce8495495d4c79a78.zip
Do not build test cases that use task_create is there is an address environment
Diffstat (limited to 'apps/examples/nxflat/tests')
-rw-r--r--apps/examples/nxflat/tests/Makefile12
1 files changed, 10 insertions, 2 deletions
diff --git a/apps/examples/nxflat/tests/Makefile b/apps/examples/nxflat/tests/Makefile
index 8a65d6494..265ac27c1 100644
--- a/apps/examples/nxflat/tests/Makefile
+++ b/apps/examples/nxflat/tests/Makefile
@@ -1,7 +1,7 @@
############################################################################
# apps/examples/nxflat/tests/Makefile
#
-# Copyright (C) 2009, 2011 Gregory Nutt. All rights reserved.
+# Copyright (C) 2009, 2011, 2014 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <gnutt@nuttx.org>
#
# Redistribution and use in source and binary forms, with or without
@@ -35,7 +35,15 @@
# Most of these do no build yet
#SUBDIRS = errno hello hello++ longjmp mutex pthread signal task struct
-SUBDIRS = errno hello mutex pthread task struct
+SUBDIRS = errno hello struct
+
+ifneq ($(CONFIG_DISABLE_PTHREAD),y)
+BUILD_SUBDIRS += mutex pthread
+endif
+
+ifneq ($(CONFIG_ARCH_ADDRENV),y)
+BUILD_SUBDIRS += task
+endif
NXFLAT_DIR = $(APPDIR)/examples/nxflat
TESTS_DIR = $(NXFLAT_DIR)/tests