From: Steven Schubiger Date: Tue, 16 Dec 2014 18:11:29 +0000 (+0100) Subject: Test that debugging builds compile X-Git-Tag: v0.55~5 X-Git-Url: http://git.refcnt.org/?p=colorize.git;a=commitdiff_plain;h=5703377a911a2b6acd03e988fafd433442930b1f Test that debugging builds compile --- diff --git a/test.pl b/test.pl index 27f7a67..959d83f 100755 --- a/test.pl +++ b/test.pl @@ -10,7 +10,7 @@ use IPC::Open3 qw(open3); use Symbol qw(gensym); use Test::More; -my $tests = 24; +my $tests = 25; my %BUF_SIZE = ( normal => 1024, @@ -172,6 +172,12 @@ SKIP: { like(qx(valgrind $program none/none $infile1 2>&1 >/dev/null), qr/no leaks are possible/, 'valgrind memleaks'); } + { + my $debug = tmpnam(); + is(system("gcc -DDEBUG -o $debug $source"), 0, 'debugging build'); + unlink $debug if -e $debug; + } + print <<'EOT'; Colors ======