diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-05-05 07:59:34 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-05-05 07:59:34 +0900 |
| commit | 6a23498962a69238ac142c3151357fb3730bfa9f (patch) | |
| tree | 7b1ddbaad2eeb5d3a91e9efc4ce1e2098d44eb89 /justfile | |
| parent | 2a560433a7fedcb6ea6fded1623bd72053e3244b (diff) | |
| download | P4Dcc-6a23498962a69238ac142c3151357fb3730bfa9f.tar.gz P4Dcc-6a23498962a69238ac142c3151357fb3730bfa9f.tar.zst P4Dcc-6a23498962a69238ac142c3151357fb3730bfa9f.zip | |
add readme and license
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -11,7 +11,7 @@ build N="1": gcc -s -Wl,-z,noexecstack -o p4dcc{{N}} main{{N}}.s fi -build-upto-10: +build-upto-10-gen: just build 1 just build 2 just build 3 @@ -23,7 +23,7 @@ build-upto-10: just build 9 just build 10 -test-self-hosted: +test-self-hosted: build-upto-10-gen diff -u ./p4dcc2 ./p4dcc3 diff -u ./p4dcc3 ./p4dcc4 diff -u ./p4dcc4 ./p4dcc5 @@ -41,9 +41,22 @@ test TESTCASE="all" $BIN="p4dcc": build bash tests/run.sh {{TESTCASE}} fi if [[ $BIN = p4dcc ]]; then - just build2 + just build 2 fi +test-all: + just test-self-hosted + just test all p4dcc + just test all p4dcc2 + just test all p4dcc3 + just test all p4dcc4 + just test all p4dcc5 + just test all p4dcc6 + just test all p4dcc7 + just test all p4dcc8 + just test all p4dcc9 + just test all p4dcc10 + clean: rm p4dcc* rm -rf tests/tmp |
