diff options
author | Giles Bathgate <gilesbathgate@gmail.com> | 2010-12-11 12:41:23 (GMT) |
---|---|---|
committer | Giles Bathgate <gilesbathgate@gmail.com> | 2010-12-11 12:41:23 (GMT) |
commit | 052f8bc620f579271be69a0d0d699b8b4ac5bb14 (patch) | |
tree | b2e03d298fa5ddfa7f9e70ac67e5e2848bc66769 /testdata | |
parent | 03c02cde89d43d465b9e9a354be8668fe6fca56d (diff) |
Fix for when the included file doesn't exist. Needed because we will never get an EOF, and so never pop the stack.
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/include-test.scad | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/testdata/scad/include-test.scad b/testdata/scad/include-test.scad index a9528f5..5db02d7 100644 --- a/testdata/scad/include-test.scad +++ b/testdata/scad/include-test.scad @@ -1,6 +1,9 @@ //Test that the entire path is pushed onto the stack upto the last '/' include <sub1/sub2/sub3/sub4/include-test2.scad> +//Test that a non existent path/file doesn't screw things up +include <non/existent/path/non-file> + //Test with empty path include <include-test5.scad> |