aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/058.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/058.sh')
-rw-r--r--tests/058.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/058.sh b/tests/058.sh
new file mode 100644
index 0000000..3be7ad1
--- /dev/null
+++ b/tests/058.sh
@@ -0,0 +1,25 @@
+set -e
+
+cat <<'EOF' > expected
+include depth limit exceeded
+EOF
+
+# Create circular include files
+cat <<'EOF' > a.h
+#include "b.h"
+int a() { return 1; }
+EOF
+
+cat <<'EOF' > b.h
+#include "a.h"
+int b() { return 2; }
+EOF
+
+bash ../../test_compile_error.sh <<'EOF'
+#include "a.h"
+
+int main() {
+ a() + b();
+ return 0;
+}
+EOF