summaryrefslogtreecommitdiff
path: root/tests/autotest.pl
blob: 683d4c3fab089a1eb305b795eed04e4fb52bd8a4 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#!/usr/bin/perl

sub permute
{
	my @defines = @_;
	my @result = ('');
	
	foreach $define (@defines)
	{
		push @result, map { length($_) == 0 ? $define : "$_,$define" } @result;
	}

	@result;
}

$fast = (shift eq 'fast');
@toolsets = ($^O =~ /win/i) ? (bcc, cw, dmc, ic8, mingw34, mingw44, mingw45, msvc6, msvc7, msvc71, msvc8, msvc9, msvc9_x64, msvc10) : (gcc);
@configurations = (debug, release);
@defines = (PUGIXML_NO_XPATH, PUGIXML_NO_EXCEPTIONS, PUGIXML_NO_STL, PUGIXML_WCHAR_MODE);
@definesabbr = (noxpath, noexcept, nostl, wchar);

if ($fast)
{
	@defines = (PUGIXML_WCHAR_MODE);
	@definesabbr = (wchar);
}

@definesets = permute(@defines);

$fail = 0;

system("echo ### autotest begin >autotest.log");

%results = ();

foreach $toolset (@toolsets)
{
	foreach $configuration (@configurations)
	{
		foreach $defineset (@definesets)
		{
			$defineabbr = $defineset;
			$defineabbr =~ s/,/ /g;

			for ($i = 0; $i < $#definesabbr + 1; ++$i)
			{
				$defineabbr =~ s/$defines[$i]/$definesabbr[$i]/;
			}

			if ($defineabbr !~ /noxpath/ && $defineabbr =~ /noexcept/) { next; }
			if ($defineabbr !~ /noxpath/ && $defineabbr =~ /nostl/) { next; }

			print "*** testing $toolset/$configuration ($defineabbr) ... ***\n";

			my $cmdline = "jam toolset=$toolset configuration=$configuration defines=$defineset";
			my $coverage_pugixml = 0;
			my $coverage_pugixpath = 0;
	
			system("echo ^# $cmdline run_tests >>autotest.log");
			$result = system("$cmdline run_tests >>autotest.log");

			# get coverage
			if ($result == 0 && $toolset =~ /mingw|gcc/)
			{
				$coverage = `$cmdline coverage`;

				$coverage_pugixml = $1 if ($coverage =~ /pugixml\.cpp' executed:([^%]+)%/);
				$coverage_pugixpath = $1 if ($coverage =~ /pugixpath\.cpp' executed:([^%]+)%/);
			}
	
			# record failures
			$fail = 1 if ($result != 0);

			# print build report
			my $report = "";

			if ($result == 0)
			{
				my $align = ($coverage_pugixml > 0 || $coverage_pugixpath > 0) ? 'left' : 'center';

				$report .= "<td bgcolor='#00ff00' align='$align'>passed";
				
				if ($coverage_pugixml > 0 || $coverage_pugixpath > 0)
				{
					$report .= " <font size='-2'>$coverage_pugixml% / $coverage_pugixpath%</font>";
				}

				$report .= "</td>"

			}
			else
			{
				$report .= "<td bgcolor='#ff0000' align='center'>failed</td>"
			}

			$results{"$configuration $defineabbr"}{$toolset} = $report;
		}

		last if ($fast);
	}
}

system("echo ### autotest end >>autotest.log");

$date = scalar localtime;

$report = <<END;
<html><head><title>pugixml autotest report</title></head><body>
<h3>pugixml autotest report</h3>
<table border=0 cellspacing=0 cellpadding=4>
<tr><td></td>
END

foreach $toolset (@toolsets)
{
	$report .= "<th>$toolset</th>";
}

$report .= "</tr>\n";

foreach $k (sort {$a cmp $b} keys %results)
{
	$report .= "<tr><td>$k</td>";

	foreach $toolset (@toolsets)
	{
		$report .= $results{$k}{$toolset};
	}
		
	$report .= "</tr>\n";
}

$report .= <<END;
</table><br>
Generated on $date
</body></html>
END

open FILE, ">autotest.html";
print FILE $report;
close FILE;