aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/057.sh
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-07-20 01:07:40 +0900
committernsfisis <nsfisis@gmail.com>2025-08-15 10:04:26 +0900
commit274e212c16bb354532e4a955e594a159cef61665 (patch)
tree04acf78078538cd17bd698d8eaf4463d7c79bf99 /tests/057.sh
parent82c99e92032b8101443671604de7137ba7257cd0 (diff)
downloadducc-274e212c16bb354532e4a955e594a159cef61665.tar.gz
ducc-274e212c16bb354532e4a955e594a159cef61665.tar.zst
ducc-274e212c16bb354532e4a955e594a159cef61665.zip
feat: partially implement #include directive
Diffstat (limited to 'tests/057.sh')
-rw-r--r--tests/057.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/057.sh b/tests/057.sh
new file mode 100644
index 0000000..6d1265f
--- /dev/null
+++ b/tests/057.sh
@@ -0,0 +1,13 @@
+set -e
+
+cat <<'EOF' > expected
+cannot open include file: nonexistent.h
+EOF
+
+bash ../../test_compile_error.sh <<'EOF'
+#include "nonexistent.h"
+
+int main() {
+ return 0;
+}
+EOF