diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-30 02:17:35 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-30 02:17:35 (GMT) |
commit | 267cb31e79816b1c68acd4026235e55225ba6fa7 (patch) | |
tree | 2726f8cd5dc52ca8c35991a44e13daa0c520196d /testdata | |
parent | 182625c5decbfe91d12242c5d69ec08b519fe2f4 (diff) |
Removed obsolete tests
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/bugs/minkowski-assert.scad | 20 | ||||
-rw-r--r-- | testdata/scad/bugs/minkowski-crash.scad | 26 | ||||
-rw-r--r-- | testdata/scad/bugs/projectioncrash.scad | 5 |
3 files changed, 0 insertions, 51 deletions
diff --git a/testdata/scad/bugs/minkowski-assert.scad b/testdata/scad/bugs/minkowski-assert.scad deleted file mode 100644 index e259514..0000000 --- a/testdata/scad/bugs/minkowski-assert.scad +++ /dev/null @@ -1,20 +0,0 @@ -/* - Originally reported by chrysn 20100516: - - terminate called after throwing an instance of 'CGAL::Assertion_exception' - what(): CGAL ERROR: assertion violation! - Expr: N.is_valid(0,0) - File: /usr/include/CGAL/convex_decomposition_3.h - Line: 113 - - This appears to have been a CGAL issue which was fixe in CGAL-3.9. -*/ - -minkowski() { - cube(20, center=true); - rotate([20, 30, 40]) - difference() { - cube(5, center=true); - cube([1, 1, 10], center=true); - } -} diff --git a/testdata/scad/bugs/minkowski-crash.scad b/testdata/scad/bugs/minkowski-crash.scad deleted file mode 100644 index 46419ba..0000000 --- a/testdata/scad/bugs/minkowski-crash.scad +++ /dev/null @@ -1,26 +0,0 @@ -/* - Originally reported by nop head 20120107: - This causes a CGAL assertion in minkowski on some platforms and CGAL versions: - o CGAL-3.6, 3.8 Linux - o Windows (OpenSCAD-2011.12 binaries) - - The problem is that minkowski leaves the target polyhedron in a corrupt state - causing a crash. This is worked around in CGALEvaluator::process(). - - CGAL-3.9 appears to just process forever. -*/ -$fn = 30; -minkowski() { - union() { - cube([10, 10, 10], center=true); - - cylinder(r=2, h=15, center=true); - - rotate([90, 0, 0]) - cylinder(r=2, h=15, center=true); - - rotate([0, 90, 0]) - cylinder(r=2, h=15, center=true); - } - sphere(3); -} diff --git a/testdata/scad/bugs/projectioncrash.scad b/testdata/scad/bugs/projectioncrash.scad deleted file mode 100644 index 532ef8d..0000000 --- a/testdata/scad/bugs/projectioncrash.scad +++ /dev/null @@ -1,5 +0,0 @@ -// This causes OpenSCAD to crash. See source code comments: -// PolySetCGALEvaluator::evaluatePolySet(const ProjectionNode &node) -// Se also https://github.com/openscad/openscad/issues/80 - -projection(cut=true) translate([0,0,-4.999999]) cube(10, center=true); |