]> git.refcnt.org Git - colorize.git/commitdiff
Set compiler once for tests
authorSteven Schubiger <stsc@refcnt.org>
Wed, 16 Mar 2016 11:56:33 +0000 (12:56 +0100)
committerSteven Schubiger <stsc@refcnt.org>
Wed, 16 Mar 2016 11:56:33 +0000 (12:56 +0100)
t/merge.t
test.pl

index 8a4aee3af7bd2cec4470812e031be189f891a6cb..74db86bc109470bf156edf536f70ad0cebb84f03 100755 (executable)
--- a/t/merge.t
+++ b/t/merge.t
@@ -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;
     }
diff --git a/test.pl b/test.pl
index ee514727c273fd6d78eaa44c64bbc856ea27e0c7..40c3cb52187b272f90183c8e96e6a5bf5bfc47d1 100755 (executable)
--- a/test.pl
+++ b/test.pl
@@ -18,6 +18,7 @@ my %BUF_SIZE = (
    short  => 10,
 );
 my $source = 'colorize.c';
+my $compiler = 'gcc';
 my $compiler_flags = '-ansi -pedantic -Wall -Wextra -Wformat -Wswitch-default -Wuninitialized -Wunused -Wno-unused-function -Wno-unused-parameter';
 
 my $write_to_tmpfile = sub
@@ -42,11 +43,11 @@ SKIP: {
     skip "$source does not exist", $tests unless -e $source;
 
     my $binary = tmpnam();
-    skip 'compiling failed', $tests unless system("gcc $compiler_flags -o $binary $source") == 0;
+    skip 'compiling failed', $tests unless system("$compiler $compiler_flags -o $binary $source") == 0;
     unlink $binary;
 
     my $program = tmpnam();
-    skip 'compiling failed (normal)', $tests unless system("gcc -DTEST -DBUF_SIZE=$BUF_SIZE{normal} -o $program $source") == 0;
+    skip 'compiling failed (normal)', $tests unless system("$compiler -DTEST -DBUF_SIZE=$BUF_SIZE{normal} -o $program $source") == 0;
 
     is(system("$program --help >/dev/null 2>&1"),    0, 'exit value for help screen');
     is(system("$program --version >/dev/null 2>&1"), 0, 'exit value for version data');
@@ -152,7 +153,7 @@ SKIP: {
 
     SKIP: {
         my $program_buf = tmpnam();
-        skip 'compiling failed (short buffer)', 2 unless system("gcc -DTEST -DBUF_SIZE=$BUF_SIZE{short} -o $program_buf $source") == 0;
+        skip 'compiling failed (short buffer)', 2 unless system("$compiler -DTEST -DBUF_SIZE=$BUF_SIZE{short} -o $program_buf $source") == 0;
         $check_clean_buf->($program_buf, $_) foreach qw(clean clean-all);
         unlink $program_buf;
     }
@@ -180,7 +181,7 @@ SKIP: {
 
     {
         my $debug = tmpnam();
-        is(system("gcc -DDEBUG -o $debug $source"), 0, 'debugging build');
+        is(system("$compiler -DDEBUG -o $debug $source"), 0, 'debugging build');
         unlink $debug if -e $debug;
     }