From 344a517ce8432db944f65659ce6d7577fe05a053 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci <aar@cpan.org> Date: Wed, 26 Feb 2014 11:55:36 +0100 Subject: [PATCH] Regression test for #1808 (crash when using non-consecutive extruders), already fixed in master branch --- t/multi.t | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/t/multi.t b/t/multi.t index 855461791..fb114f196 100644 --- a/t/multi.t +++ b/t/multi.t @@ -1,4 +1,4 @@ -use Test::More tests => 1; +use Test::More tests => 2; use strict; use warnings; @@ -58,4 +58,12 @@ use Slic3r::Test; ok !(first { $convex_hull->contains_point($_) } @toolchange_points), 'all toolchanges happen outside skirt'; } +{ + my $config = Slic3r::Config->new_from_defaults; + $config->set('support_material_extruder', 3); + + my $print = Slic3r::Test::init_print('20mm_cube', config => $config); + ok Slic3r::Test::gcode($print), 'no errors when using non-consecutive extruders'; +} + __END__