summaryrefslogtreecommitdiff
path: root/tests/regression/echotest
AgeCommit message (Collapse)Author
2014-01-24Handle NaN / +Inf / -Inf in range evaluation (fixes #606).Torsten Paul
2013-12-26Add concat() builtin (fixes #201).Torsten Paul
This allows to concatenate multiple vectors and single elements into a single result vector.
2013-12-06Add specific tests for unicode len()Brody Kenrick
2013-12-05Unicode support for stringsBrody Kenrick
Add suport for using unicode strings in .scad files. Support iterating across them/accessing them via [] and searching. -------- Add GLIB (to build for test and normal build -- both with installed and built locally development files). Add support for unicode chars to length and search builtin functions and [] for strings. Added unicode testing functions. Ad GLIB to library info page.
2013-11-11Update 'children' test case using range [4 : -1 : 0] which is now valid.Torsten Paul
2013-11-11Add test cases for new range expression handling.Torsten Paul
2013-10-13Merge branch 'children' of git://github.com/vicnet/openscad into vicnet-childrenMarius Kintel
Conflicts: tests/CMakeLists.txt
2013-10-09Added test case for parent_module()Marius Kintel
2013-10-08add children testsVicnet
2013-09-21make echotest work on BSD, by adding .echo as recognized extensionDon Bright
2013-09-20restore missing digits. make --info work better. fix parser / path bugDon Bright
2013-09-12remove extraneous files, add rands working testDon Bright
2013-08-21Fixes two problems related to : lookup was dynamic rather than lexical, ↵Marius Kintel
assignment was done after all local variables causing it not to be copyable
2013-06-26Merge branch 'master' into no-testprogramschrysn
Conflicts: tests/CMakeLists.txt tests/regression/csgtermtest/assign-expected.term tests/regression/csgtermtest/child-expected.term tests/regression/csgtermtest/circle-expected.term tests/regression/csgtermtest/color-expected.term tests/regression/csgtermtest/cube-expected.term tests/regression/csgtermtest/cylinder-expected.term tests/regression/csgtermtest/difference-expected.term tests/regression/csgtermtest/dxf_linear_extrude-expected.term tests/regression/csgtermtest/dxf_rotate_extrude-expected.term tests/regression/csgtermtest/echo-expected.term tests/regression/csgtermtest/for-expected.term tests/regression/csgtermtest/glide-expected.term tests/regression/csgtermtest/group-expected.term tests/regression/csgtermtest/hull-expected.term tests/regression/csgtermtest/if-expected.term tests/regression/csgtermtest/import-expected.term tests/regression/csgtermtest/import_dxf-expected.term tests/regression/csgtermtest/import_off-expected.term tests/regression/csgtermtest/import_stl-expected.term tests/regression/csgtermtest/intersection-expected.term tests/regression/csgtermtest/intersection_for-expected.term tests/regression/csgtermtest/linear_extrude-expected.term tests/regression/csgtermtest/minkowski-expected.term tests/regression/csgtermtest/mirror-expected.term tests/regression/csgtermtest/multmatrix-expected.term tests/regression/csgtermtest/polygon-expected.term tests/regression/csgtermtest/polyhedron-expected.term tests/regression/csgtermtest/projection-expected.term tests/regression/csgtermtest/render-expected.term tests/regression/csgtermtest/rotate-expected.term tests/regression/csgtermtest/rotate_extrude-expected.term tests/regression/csgtermtest/scale-expected.term tests/regression/csgtermtest/sphere-expected.term tests/regression/csgtermtest/square-expected.term tests/regression/csgtermtest/subdiv-expected.term tests/regression/csgtermtest/surface-expected.term tests/regression/csgtermtest/translate-expected.term tests/regression/csgtermtest/union-expected.term tests/regression/dumptest/circle-expected.csg tests/regression/dumptest/color-expected.csg tests/regression/dumptest/cube-expected.csg tests/regression/dumptest/cylinder-expected.csg tests/regression/dumptest/difference-expected.csg tests/regression/dumptest/dxf_linear_extrude-expected.csg tests/regression/dumptest/dxf_rotate_extrude-expected.csg tests/regression/dumptest/glide-expected.csg tests/regression/dumptest/import-expected.csg tests/regression/dumptest/import_dxf-expected.csg tests/regression/dumptest/import_off-expected.csg tests/regression/dumptest/import_stl-expected.csg tests/regression/dumptest/intersection-expected.csg tests/regression/dumptest/intersection_for-expected.csg tests/regression/dumptest/linear_extrude-expected.csg tests/regression/dumptest/minkowski-expected.csg tests/regression/dumptest/mirror-expected.csg tests/regression/dumptest/multmatrix-expected.csg tests/regression/dumptest/polygon-expected.csg tests/regression/dumptest/polyhedron-expected.csg tests/regression/dumptest/projection-expected.csg tests/regression/dumptest/render-expected.csg tests/regression/dumptest/rotate-expected.csg tests/regression/dumptest/rotate_extrude-expected.csg tests/regression/dumptest/scale-expected.csg tests/regression/dumptest/sphere-expected.csg tests/regression/dumptest/square-expected.csg tests/regression/dumptest/subdiv-expected.csg tests/regression/dumptest/surface-expected.csg tests/regression/dumptest/translate-expected.csg
2013-06-26Test case for #399Marius Kintel
2013-06-25trim precision from the echo testschrysn
as it was done with dumptest before
2013-06-13Related to #399, reverted assignment evaluation order to be the same as in ↵Marius Kintel
2013.01 as the new implementation broke existing scripts. Added some experimental commented out code, which can be used as reference in the future
2013-06-13Added scope and reassignment testsMarius Kintel
2013-05-14Updated expected test: ERROR labelMarius Kintel
2013-05-09Added testcase for #322Marius Kintel
2013-04-26Further refactoring of scope/context mechanisms. Mostly related to the new ↵Marius Kintel
FileContext class. Not quite there yet, but almost
2013-04-19Tag search failures as warningsMarius Kintel
2013-03-11Added test case for value reassignment issue. #289Marius Kintel
2012-10-10Detect recursive execution of functions to avoid a stack overflow crash. ↵Marius Kintel
Fixes #200
2012-07-27add test for proper rounding of decimals in echo()don bright
2012-03-31Updated matrix and vector multiplication testsMarius Kintel
2012-02-15Added search functionAndrew Plumb
Search for characters, strings and integers in a lookup table and return the index (or indices) for matches.
2012-02-15Added vector math support.Andrew Plumb
Added vector dot-product, matrix*vec, vec*matrix and matrix*matrix support.
2012-01-25Ported printutils away from QtMarius Kintel
2012-01-09Another try at fixing double-to-text conversion for testingMarius Kintel
2012-01-08added tests passing infinity to various functionsBrad Pitcher
2011-11-24Attempt to batte floating point rounding differences for testing purposesMarius Kintel
2011-11-23Output relative filenames in warnings for echotest to give similar results ↵Marius Kintel
across machines
2011-11-13string indexing testsBrad Pitcher
2011-11-12Hooked up function testsMarius Kintel
2011-11-12Reorganized some testsMarius Kintel
2011-11-09Only quote strings when using the stream operator. Fixes #35Marius Kintel
2011-11-07wops, wrong test name. fixes echotest_string-test errorMarius Kintel
2011-11-05Added builtin-testsMarius Kintel
2011-11-05Added parser-testsMarius Kintel
2011-10-08Added echotest and echo test casesMarius Kintel
contact: Jan Huwald // Impressum