diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-05-07 09:18:21 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-05-07 09:18:21 +0900 |
| commit | f427d5c99f0380d7f547101878e36ef5008e248b (patch) | |
| tree | c88435dabe710d9592a7b081cdb48922e5f96ffe /tests | |
| parent | 68d9da9746d235e2d9a7d0ba61310c533b355847 (diff) | |
| download | ducc-f427d5c99f0380d7f547101878e36ef5008e248b.tar.gz ducc-f427d5c99f0380d7f547101878e36ef5008e248b.tar.zst ducc-f427d5c99f0380d7f547101878e36ef5008e248b.zip | |
start ducc project
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/run.sh | 2 | ||||
| -rw-r--r-- | tests/test_diff.sh | 2 | ||||
| -rw-r--r-- | tests/test_exit_code.sh | 2 | ||||
| -rw-r--r-- | tests/test_output.sh | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/run.sh b/tests/run.sh index 2a5d9be..0e28a96 100644 --- a/tests/run.sh +++ b/tests/run.sh @@ -1,6 +1,6 @@ set -e -export p4dcc="../../../$BIN" +export ducc="../../../$BIN" export testcase=$1 export tmp_dir="tests/tmp/$testcase" diff --git a/tests/test_diff.sh b/tests/test_diff.sh index 44e00d0..ec0f1d0 100644 --- a/tests/test_diff.sh +++ b/tests/test_diff.sh @@ -1,6 +1,6 @@ cat > main.c -"$p4dcc" < main.c > main.s +"$ducc" < main.c > main.s if [[ $? -ne 0 ]]; then cat main.s >&2 exit 1 diff --git a/tests/test_exit_code.sh b/tests/test_exit_code.sh index f49d468..490de5b 100644 --- a/tests/test_exit_code.sh +++ b/tests/test_exit_code.sh @@ -1,6 +1,6 @@ cat > main.c -"$p4dcc" < main.c > main.s +"$ducc" < main.c > main.s if [[ $? -ne 0 ]]; then cat main.s >&2 exit 1 diff --git a/tests/test_output.sh b/tests/test_output.sh index 2c8fb29..2f8b984 100644 --- a/tests/test_output.sh +++ b/tests/test_output.sh @@ -1,6 +1,6 @@ cat > main.c -"$p4dcc" < main.c > main.s +"$ducc" < main.c > main.s if [[ $? -ne 0 ]]; then cat main.s >&2 exit 1 |
