diff options
author | Marius Kintel <marius@kintel.net> | 2011-05-01 04:40:57 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-05-01 04:40:57 (GMT) |
commit | 50e59e94e25fd500ec8bcaef869da53674040ab4 (patch) | |
tree | 64ea315a7258a97457cefb6506c9b443cfc1d9ec /testdata/scad/include-test.scad | |
parent | 75c06de2db9c3ae78f842187b86b736453cba0c1 (diff) |
Reorganized regression test folders
Diffstat (limited to 'testdata/scad/include-test.scad')
-rw-r--r-- | testdata/scad/include-test.scad | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/testdata/scad/include-test.scad b/testdata/scad/include-test.scad deleted file mode 100644 index 5db02d7..0000000 --- a/testdata/scad/include-test.scad +++ /dev/null @@ -1,40 +0,0 @@ -//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> - -//Test without preceeding space -include<include-test5.scad> - -//Test with other strange character that is allowed -include>>>>><include-test5.scad> - -//Test that filenames with spaces work -include <include test6.scad> - -//Test with empty file -include<test/> - -//Test with empty path and file -include </> - -//Test with empty -include <> - -module test1() -{ - test2(); - test3(); - test4(); - test5(); - test6(); - - //Just to give a top level object - sphere(1); -} - -test1(); |