mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
898720b7e9
$ cd test $ sudo make check will run all tests in the TEST-* subdirectories $ cd test/TEST-01-BASIC $ sudo make clean setup run will run the different stages of the test for debugging purposes
11 lines
313 B
Makefile
11 lines
313 B
Makefile
all:
|
|
@make -s --no-print-directory -C ../.. all
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --all
|
|
setup:
|
|
@make --no-print-directory -C ../.. all
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --setup
|
|
clean:
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --clean
|
|
run:
|
|
@basedir=../.. TEST_BASE_DIR=../ ./test.sh --run
|