aboutsummaryrefslogtreecommitdiff
path: root/testcases/Makefile
diff options
context:
space:
mode:
authorsubrata_modak <subrata_modak>2008-05-13 09:02:29 +0000
committersubrata_modak <subrata_modak>2008-05-13 09:02:29 +0000
commit45d91c455e1e06e3070b01425f0afa606f313d9a (patch)
treeb0598f65fc19adc419335ecb040c4b701f14b53a /testcases/Makefile
parentb2e70c6d4679407b22b8b7ed8c3a6884797ba2b1 (diff)
The problem is because some of the realtime tests can't be compiled on older distros. We will have to fix this 'properly', taking into account the kernel and glibc versions, as well as the architecture. Until we do that, can we disable compiling realtime tests by default? Below is a patch that can do it. Signed-off-by: Sripathi Kodi <sripathik@in.ibm.com>
Diffstat (limited to 'testcases/Makefile')
-rw-r--r--testcases/Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/testcases/Makefile b/testcases/Makefile
index 68fad616d..760e45a7f 100644
--- a/testcases/Makefile
+++ b/testcases/Makefile
@@ -1,9 +1,4 @@
-ifeq ($(shell uname -m |grep -c -e "86" -e "ppc"), 1)
- SUBDIRS = `ls */Makefile | sed "s/Makefile//g" | grep -v open | grep -v pounder | grep -v DOTS | grep -v kdump `
-else
SUBDIRS = `ls */Makefile | sed "s/Makefile//g" | grep -v open | grep -v pounder | grep -v DOTS | grep -v kdump | grep -v realtime`
-endif
-
UCLINUX_SUBDIRS = kernel
all:
@set -e; for i in $(SUBDIRS); do $(MAKE) -C $$i ; done