diff options
author | Marius Kintel <marius@kintel.net> | 2013-05-27 01:55:00 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-05-27 01:55:00 (GMT) |
commit | 0967a26bff45951d7b86fe628e8b1156e6e40ede (patch) | |
tree | fa72ca81652700a373023dace3a4163036ece20e /testdata/modulecache-tests | |
parent | 837b574351cdaddaebed6c4b0ba281b7e20c2a0f (diff) |
Support locating previously missing modules. yet another part of #364
Diffstat (limited to 'testdata/modulecache-tests')
-rw-r--r-- | testdata/modulecache-tests/README.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testdata/modulecache-tests/README.txt b/testdata/modulecache-tests/README.txt index 4577f70..ce341ca 100644 --- a/testdata/modulecache-tests/README.txt +++ b/testdata/modulecache-tests/README.txt @@ -98,3 +98,13 @@ o Verify that you get: WARNING: Can't open include file 'subdir/missingsub.scad' o echo "module missingsub() { sphere(10); }" > subdir/missingsub.scad o rm subdir/missingsub.scad o Reload and Compile (F4) - verify that the sphere is gone + +Test13: Missing library file appears +------- +o rm missing.scad +o Open usemissing.scad +o Compile (F5) +o Verify that you get: WARNING: Can't open 'use' file 'missing.scad'. +o echo "module missing() { sphere(10); }" > missing.scad +o rm missing.scad +o Compile (F5) - verify that the sphere is gone |