Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorVojtech Bubnik <bubnikv@gmail.com>2021-09-10 12:43:53 +0300
committerVojtech Bubnik <bubnikv@gmail.com>2021-09-10 12:43:59 +0300
commit03b60486840f32e32dc54103dc3051f94e79b35a (patch)
tree9f55144edb1360560af593f399c613f89da1526b /t
parent410b5e610b42ee39491ab252d018c3cf22ba46b2 (diff)
Follow-up to beee18f22991e369b1722a43bbcb692fa0d68af0
WIP to G-code export parallelization through pipelining: Decoupled CoolingBuffer from GCode / GCodeWriter, ready to be pipelined on a different thread.
Diffstat (limited to 't')
-rw-r--r--t/cooling.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/cooling.t b/t/cooling.t
index 2f444cf9d..a7720fd07 100644
--- a/t/cooling.t
+++ b/t/cooling.t
@@ -132,7 +132,7 @@ $config->set('disable_fan_first_layers', [ 0 ]);
'fan_below_layer_time' => [ $print_time2 + 1, $print_time2 + 1 ],
'slowdown_below_layer_time' => [ $print_time2 + 2, $print_time2 + 2 ]
});
- $buffer->gcodegen->set_extruders([ 0, 1 ]);
+ $gcodegen->set_extruders([ 0, 1 ]);
my $gcode = $buffer->process_layer($gcode1 . "T1\nG1 X0 E1 F3000\n", 0);
like $gcode, qr/^M106/, 'fan is activated for the 1st tool';
like $gcode, qr/.*M107/, 'fan is disabled for the 2nd tool';