diff options
author | Marius Kintel <marius@kintel.net> | 2013-06-13 05:31:09 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-06-13 05:31:09 (GMT) |
commit | 2a8f188fca3476dd07222585237d3afbc2e7b6be (patch) | |
tree | a74794929f2d825fc8fec5777c688e9d59b9eafb /testdata | |
parent | bd0248e109f6a290570bca55949583ea80bdce38 (diff) | |
parent | e76a41a34672385eb0f8e69e95c932a565cc2bc2 (diff) |
Merge branch 'master' of github.com:openscad/openscad
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/misc/value-reassignment-tests.scad | 7 | ||||
-rw-r--r-- | testdata/scad/misc/value-reassignment-tests2.scad | 9 | ||||
-rw-r--r-- | testdata/scad/misc/variable-scope-tests.scad | 13 |
3 files changed, 27 insertions, 2 deletions
diff --git a/testdata/scad/misc/value-reassignment-tests.scad b/testdata/scad/misc/value-reassignment-tests.scad index 475f78f..4370c11 100644 --- a/testdata/scad/misc/value-reassignment-tests.scad +++ b/testdata/scad/misc/value-reassignment-tests.scad @@ -1,4 +1,9 @@ +// Test reassignment which depends on a previously assigned variable, +// as this could be messed up if order of assignment evaluation +// changes + myval = 2; i = 2; myval = i * 2; -echo(myval); +echo(myval, i); // Should output 4, 2 + diff --git a/testdata/scad/misc/value-reassignment-tests2.scad b/testdata/scad/misc/value-reassignment-tests2.scad new file mode 100644 index 0000000..9d7cf50 --- /dev/null +++ b/testdata/scad/misc/value-reassignment-tests2.scad @@ -0,0 +1,9 @@ +// Test reassignment where another variable has used the previous +// value before the reassignment. This could get messed up if order of +// assignment evaluation changes + +myval = 2; +i = myval; +myval = 3; +echo(myval, i); // Should output 3, 2 + diff --git a/testdata/scad/misc/variable-scope-tests.scad b/testdata/scad/misc/variable-scope-tests.scad index 8426fbb..104d1a4 100644 --- a/testdata/scad/misc/variable-scope-tests.scad +++ b/testdata/scad/misc/variable-scope-tests.scad @@ -49,5 +49,16 @@ echo("undeclared variable can still be passed and used"); module undeclared_var() { echo(d); } - undeclared_var(d=6); + +echo("attempt to assign from a not-yet-defined variable which also exists globally"); + +globalval = 1; +// Test that b = a turns into b = 1, heeding the order of the assignments +// See issue #399 for more discussion +module global_lookup() { + b = globalval; // Should be assigned 1 since the local one isn't yet defined + globalval = 5; // Overrides the value for the local scope only + echo(globalval,b); // Should output 5, 1 +} +global_lookup(); |