aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAndi Kleen <ak@linux.intel.com>2009-12-14 16:18:21 +0100
committerAndi Kleen <ak@linux.intel.com>2009-12-14 16:18:21 +0100
commitef36622ae64af4088c072bb5e0a4457589c2e1a8 (patch)
treedd15a0dacfcc36b434ecec15c35259d51d9a92f9 /Makefile
parent8e86fde38a2c5b90a033bf0e91621a0aa4dd1a21 (diff)
downloadmce-test-ef36622ae64af4088c072bb5e0a4457589c2e1a8.tar.gz
Don't run kdump test in make test, but in make test-kdump
This essentially renames test-simple to test Also some minor fixes to the Makefiel Signed-off-by: Andi Kleen <ak@linux.intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4015eab..77fc5c4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,4 @@
+.PHONY: test clean distclean reset test-simple test-kdump
all:
$(MAKE) -C tools
@@ -20,13 +21,16 @@ reset:
rm -rf work/*
rm -rf results/*
-test:
+test: test-simple
+
+test-simple:
$(MAKE) reset
./drivers/simple/driver.sh simple.conf
- ./drivers/kdump/driver.sh kdump.conf
$(MAKE) -C tsrc test
-test-simple:
+# requires special packages to be installed
+test-kdump:
$(MAKE) reset
./drivers/simple/driver.sh simple.conf
+ ./drivers/kdump/driver.sh kdump.conf
$(MAKE) -C tsrc test