aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorGravatar Steven Schubiger <stsc@refcnt.org> 2019-08-18 20:43:31 +0200
committerGravatar Steven Schubiger <stsc@refcnt.org> 2019-08-18 20:43:31 +0200
commit7636fceeb6c659db3e40fc90b7e5ef593bc47875 (patch)
tree1bd3b5824ef3af94cc3b36d79a652d31e09e86cb /t
parente33f1445fc79d6c3d43d22808f09e85f0947530b (diff)
downloadcolorize-7636fceeb6c659db3e40fc90b7e5ef593bc47875.tar.gz
colorize-7636fceeb6c659db3e40fc90b7e5ef593bc47875.tar.bz2
Compile with -DTEST for testing
Diffstat (limited to 't')
-rwxr-xr-xt/merge.t4
1 files changed, 2 insertions, 2 deletions
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;
}