mirror of
https://github.com/openharmony/third_party_ltp.git
synced 2026-07-01 12:25:45 -04:00
fa84e72d29
Signed-off-by: limeng151 <limeng151@huawei.com> Change-Id: Ib2bdb78deee8e79c8900b3703446c0a617619804
42 lines
755 B
Makefile
Executable File
42 lines
755 B
Makefile
Executable File
.PHONY: test clean distclean reset test-simple test-kdump
|
|
|
|
all:
|
|
$(MAKE) -C tools
|
|
$(MAKE) -C tsrc
|
|
$(MAKE) -C stress
|
|
|
|
clean:
|
|
$(MAKE) -C tools clean
|
|
$(MAKE) -C tsrc clean
|
|
$(MAKE) -C stress clean
|
|
$(MAKE) reset
|
|
|
|
distclean:
|
|
$(MAKE) -C tools distclean
|
|
$(MAKE) -C tsrc distclean
|
|
$(MAKE) -C stress distclean
|
|
$(MAKE) reset
|
|
rm -rf bin/*
|
|
|
|
reset:
|
|
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
|