aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_compile_error.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_compile_error.sh')
-rw-r--r--tests/test_compile_error.sh9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/test_compile_error.sh b/tests/test_compile_error.sh
deleted file mode 100644
index 2e3c207..0000000
--- a/tests/test_compile_error.sh
+++ /dev/null
@@ -1,9 +0,0 @@
-cat > main.c
-
-"$ducc" main.c > /dev/null 2> output
-if [[ $? -eq 0 ]]; then
- "expected to fail"
- exit 1
-fi
-
-diff -u expected output