diff options
author | Steven Schubiger <stsc@refcnt.org> | 2016-03-16 12:56:33 +0100 |
---|---|---|
committer | Steven Schubiger <stsc@refcnt.org> | 2016-03-16 12:56:33 +0100 |
commit | bf223df46d9b78354c2045170e93385efe73a7f4 (patch) | |
tree | 2f2c336ba0fadf3cdcf6bbd779e232de1077193f /t/merge.t | |
parent | 02ff24b4d080945fa5b5eecd8b57780b0035ecea (diff) | |
download | colorize-bf223df46d9b78354c2045170e93385efe73a7f4.tar.gz colorize-bf223df46d9b78354c2045170e93385efe73a7f4.tar.bz2 |
Set compiler once for tests
Diffstat (limited to 't/merge.t')
-rwxr-xr-x | t/merge.t | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -95,6 +95,7 @@ $tests += @buffer; $tests += @pushback; my $source = 'colorize.c'; +my $compiler = 'gcc'; my %programs; my $compile = sub @@ -102,7 +103,7 @@ my $compile = sub my ($buf_size) = @_; return true if exists $programs{$buf_size}; my $program = tmpnam(); - return false unless system("gcc -DTEST_MERGE_PART_LINE -DBUF_SIZE=$buf_size -o $program $source") == 0; + return false unless system("$compiler -DTEST_MERGE_PART_LINE -DBUF_SIZE=$buf_size -o $program $source") == 0; $programs{$buf_size} = $program; return true; # compiling succeeded }; @@ -144,7 +145,7 @@ foreach my $test (@pushback) { my $buf_size = $test->[1]; SKIP: { my $program = tmpnam(); - skip 'compiling failed (merge part line)', 1 unless system("gcc -DBUF_SIZE=$buf_size -o $program $source") == 0; + skip 'compiling failed (merge part line)', 1 unless system("$compiler -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; } |