diff options
author | Steven Schubiger <stsc@refcnt.org> | 2019-08-18 20:43:31 +0200 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2019-08-18 20:43:31 +0200 |
commit | 7636fceeb6c659db3e40fc90b7e5ef593bc47875 (patch) | |
tree | 1bd3b5824ef3af94cc3b36d79a652d31e09e86cb /t/merge.t | |
parent | e33f1445fc79d6c3d43d22808f09e85f0947530b (diff) | |
download | colorize-7636fceeb6c659db3e40fc90b7e5ef593bc47875.tar.gz colorize-7636fceeb6c659db3e40fc90b7e5ef593bc47875.tar.bz2 |
Compile with -DTEST for testing
Diffstat (limited to 't/merge.t')
-rwxr-xr-x | t/merge.t | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |