aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/run.sh2
-rw-r--r--tests/test_diff.sh2
-rw-r--r--tests/test_exit_code.sh2
-rw-r--r--tests/test_output.sh2
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