From: Steven Schubiger Date: Sun, 18 Aug 2019 18:43:31 +0000 (+0200) Subject: Compile with -DTEST for testing X-Git-Tag: v0.65~14^2~10 X-Git-Url: http://git.refcnt.org/?p=colorize.git;a=commitdiff_plain;h=7636fceeb6c659db3e40fc90b7e5ef593bc47875 Compile with -DTEST for testing --- diff --git a/t/merge.t b/t/merge.t index 848c022..a234b12 100755 --- a/t/merge.t +++ b/t/merge.t @@ -103,7 +103,7 @@ my $compile = sub my ($buf_size) = @_; return true if exists $programs{$buf_size}; my $program = tmpnam(); - return false unless system("$compiler -DTEST_MERGE_PART_LINE -DBUF_SIZE=$buf_size -o $program $source") == 0; + return false unless system("$compiler -DTEST -DTEST_MERGE_PART_LINE -DBUF_SIZE=$buf_size -o $program $source") == 0; $programs{$buf_size} = $program; return true; # compiling succeeded }; @@ -147,7 +147,7 @@ foreach my $test (@pushback) { my $buf_size = $test->[1]; SKIP: { my $program = tmpnam(); - skip $compiling_failed_msg, 1 unless system("$compiler -DBUF_SIZE=$buf_size -o $program $source") == 0; + skip $compiling_failed_msg, 1 unless system("$compiler -DTEST -DBUF_SIZE=$buf_size -o $program $source") == 0; ok(qx(printf %s "$test->[0]" | $program --clean) eq $test->[0], 'pushback: ' . $test_name->($test->[0], $buf_size)); unlink $program; }