aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChen Gong <gong.chen@linux.intel.com>2012-04-13 15:41:12 -0700
committerAndi Kleen <ak@linux.intel.com>2012-04-13 15:41:46 -0700
commit85e48f06129bce391d0971c83725f874074074f0 (patch)
treef94452bc0532b55f1d55990ad85040964cbf3639 /Makefile
parent38f7e2c0e0c070d93f5427caa0e529c68f88f1f4 (diff)
downloadmce-test-85e48f06129bce391d0971c83725f874074074f0.tar.gz
Reorganize mce-test
This new design reorganize entire structure of MCE-test. After applying new structure, MCE-test owns new unified output format and interface. In principle, during this change, no functional change. Only some minor fixes and updates are added, BTW, a few new test cases are merged such as PFA. Other test cases will be applied after this change is fused into current MCE-test. Signed-off-by: Chen Gong <gong.chen@linux.intel.com> Signed-off-by: Andi Kleen <ak@linux.intel.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 6 insertions, 29 deletions
diff --git a/Makefile b/Makefile
index f0cdc21..366f71f 100644
--- a/Makefile
+++ b/Makefile
@@ -1,41 +1,18 @@
-.PHONY: test clean distclean reset test-simple test-kdump
-
all:
$(MAKE) -C tools
- $(MAKE) -C tsrc
- $(MAKE) -C stress
+ $(MAKE) -C cases
clean:
$(MAKE) -C tools clean
- $(MAKE) -C tsrc clean
- $(MAKE) -C stress clean
+ $(MAKE) -C cases clean
$(MAKE) reset
-distclean:
- $(MAKE) -C tools distclean
- $(MAKE) -C tsrc distclean
- $(MAKE) -C stress distclean
- $(MAKE) reset
- rm -rf bin/*
+install:
+ $(MAKE) -C tools install
+ $(MAKE) -C cases install
reset:
+ rm -rf bin/*
rm -rf work/*
rm -rf results/*
-test: test-simple test-stress
-
-test-simple:
- $(MAKE) reset
- ./drivers/simple/driver.sh simple.conf
- $(MAKE) -C tsrc test
-
-# requires LTP & page-types to be installed
-test-stress:
- $(MAKE) -C stress test
-
-# 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