Skip to content

Commit

Permalink
New test to ensure brim and raft are extruded with the support materi…
Browse files Browse the repository at this point in the history
…al extruder. #123
  • Loading branch information
alranel committed Jun 7, 2013
1 parent f991e3b commit 7a8e1e7
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion t/support.t
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,24 @@ use Slic3r::Test;
my $config = Slic3r::Config->new_from_defaults;
$config->set('raft_layers', 3);
$config->set('brim_width', 6);
$config->set('skirts', 0);
$config->set('support_material_extruder', 2);
$config->set('layer_height', 0.4);
$config->set('first_layer_height', '100%');
my $print = Slic3r::Test::init_print('20mm_cube', config => $config);
ok Slic3r::Test::gcode($print), 'no conflict between raft/support and brim';
ok my $gcode = Slic3r::Test::gcode($print), 'no conflict between raft/support and brim';

my $tool = 0;
Slic3r::GCode::Reader->new(gcode => $gcode)->parse(sub {
my ($self, $cmd, $args, $info) = @_;

if ($cmd =~ /^T(\d+)/) {
$tool = $1;
} elsif ($info->{extruding} && $self->Z <= ($config->raft_layers * $config->layer_height)) {
fail 'not extruding raft/brim with support material extruder'
if $tool != ($config->support_material_extruder-1);
}
});
}

__END__

0 comments on commit 7a8e1e7

Please sign in to comment.