diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-30 19:21:52 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-30 19:23:26 +0200 |
commit | 7d98645fe8efcb446079a8a3cd8721ef5e27ee79 (patch) | |
tree | fe7f6e7e919f693dd784e8bded07531a664ac5b6 /tests/vloghtb | |
parent | ceecf5b1535cf2e567c144bdbe143c8ba66c69d7 (diff) | |
download | yosys-7d98645fe8efcb446079a8a3cd8721ef5e27ee79.tar.gz yosys-7d98645fe8efcb446079a8a3cd8721ef5e27ee79.tar.bz2 yosys-7d98645fe8efcb446079a8a3cd8721ef5e27ee79.zip |
Added "make -j{N}" support to "make test"
Diffstat (limited to 'tests/vloghtb')
-rwxr-xr-x | tests/vloghtb/run-test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vloghtb/run-test.sh b/tests/vloghtb/run-test.sh index b1b205a22..ad99226e7 100755 --- a/tests/vloghtb/run-test.sh +++ b/tests/vloghtb/run-test.sh @@ -9,7 +9,7 @@ tar --strip=1 -xjf vloghammer_tb.tar.bz2 make clean rm -rf log_test_* -make -j4 EXIT_ON_ERROR=1 YOSYS_BIN=$PWD/../../yosys YOSYS_SCRIPT="proc;;" check_yosys -make -j4 -f test_makefile MODE=share -make -j4 -f test_makefile MODE=mapopt +${MAKE:-make} EXIT_ON_ERROR=1 YOSYS_BIN=$PWD/../../yosys YOSYS_SCRIPT="proc;;" check_yosys +${MAKE:-make} -f test_makefile MODE=share +${MAKE:-make} -f test_makefile MODE=mapopt |