diff options
author | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-06 06:37:54 +0000 |
---|---|---|
committer | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-06 06:37:54 +0000 |
commit | eaac540dd208601921ed2ca33448003a697ff557 (patch) | |
tree | 8f2089a62b9a38020b5e9f3a4c132b43fee4db09 /tests/autotest-local.pl | |
parent | f817d5bca4d92ec4fdc67d24e161b958c2218d81 (diff) |
tests: Added BadaSDK to tests, changed report coloring to mark cells that compiled successfully but skipped execution
git-svn-id: http://pugixml.googlecode.com/svn/trunk@841 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-local.pl')
-rw-r--r-- | tests/autotest-local.pl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/autotest-local.pl b/tests/autotest-local.pl index cd89f22..fd81be0 100644 --- a/tests/autotest-local.pl +++ b/tests/autotest-local.pl @@ -34,7 +34,7 @@ sub getcpucount undef; } -@alltoolsets = ($^O =~ /MSWin/) ? (bcc, cw, dmc, ic8, ic9, ic9_x64, ic10, ic10_x64, ic11, ic11_x64, mingw34, mingw44, mingw45, mingw45_0x, mingw46_x64, msvc6, msvc7, msvc71, msvc8, msvc8_x64, msvc9, msvc9_x64, msvc10, msvc10_x64, msvc10_clr, msvc10_clr_x64, xbox360, ps3_gcc, ps3_snc, msvc8_wince) : ($^O =~ /solaris/) ? (suncc, suncc_x64) : &gcctoolset(); +@alltoolsets = ($^O =~ /MSWin/) ? (bcc, cw, dmc, ic8, ic9, ic9_x64, ic10, ic10_x64, ic11, ic11_x64, mingw34, mingw44, mingw45, mingw45_0x, mingw46_x64, msvc6, msvc7, msvc71, msvc8, msvc8_x64, msvc9, msvc9_x64, msvc10, msvc10_x64, msvc10_clr, msvc10_clr_x64, xbox360, ps3_gcc, ps3_snc, msvc8_wince, bada) : ($^O =~ /solaris/) ? (suncc, suncc_x64) : &gcctoolset(); $fast = scalar grep(/^fast$/, @ARGV); @toolsets = map { /^fast$/ ? () : ($_) } @ARGV; @@ -101,12 +101,13 @@ foreach $toolset (@toolsets) while (<PIPE>) { # ... autotest release [wchar] success - if (/^\.\.\. autotest (\S+) \[(.*?)\] success/) + if (/^\.\.\. autotest (\S+) \[(.*?)\] (success|skiprun)/) { my $configuration = $1; my $defineset = ($2 eq $stddefine) ? '' : $2; + my $result = $3; - print "### autotest $Config{archname} $toolset $configuration [$defineset] success\n"; + print "### autotest $Config{archname} $toolset $configuration [$defineset] $result\n"; } # ... autotest release [wchar] gcov elsif (/^\.\.\. autotest (\S+) \[(.*?)\] gcov/) |