summaryrefslogtreecommitdiffstats
path: root/mongoose/test/all_build_flags.pl
blob: ee225f9a2cba97c116abc0027f78321750450ac6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env perl

@flags = ("NO_POPEN", "NO_SSL", "NDEBUG", "DEBUG", "NO_CGI");
my $num_flags = @flags;

sub fail {
	print "FAILED: @_\n";
	exit 1;
}

my $platform = $ARGV[0] || "linux";

for (my $i = 0; $i < 2 ** $num_flags; $i++) {
	my $bitmask = sprintf("%*.*b", $num_flags, $num_flags, $i);
	my @combination = ();
	for (my $j = 0; $j < $num_flags; $j++) {
		push @combination, $flags[$j] if substr($bitmask, $j, 1);
	}
	my $defines = join(" ", map { "-D$_" } @combination);
	my $cmd = "CFLAGS=\"$defines\" make clean $platform >/dev/null";
	system($cmd) == 0 or fail "build failed: $_";
	print "Build succeeded, flags: [$defines]\n";
	system("perl test/test.pl basic_tests >/dev/null") == 0
		or fail "basic tests";
	print "Basic tests: OK\n";
}

print "PASS: All builds passed!\n";