aboutsummaryrefslogtreecommitdiffstats
path: root/test.pl
diff options
context:
space:
mode:
Diffstat (limited to 'test.pl')
-rwxr-xr-xtest.pl8
1 files changed, 7 insertions, 1 deletions
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
======