diff options
author | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-07 05:59:09 +0000 |
---|---|---|
committer | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-07 05:59:09 +0000 |
commit | ca8d43ba03df6302235eeb667ef0573fc42bc8ad (patch) | |
tree | 831fc897094ed51d742c7722dd39be4e3753ec1e /tests/autotest-report.pl | |
parent | 199b97a851f20bb5fa3d3f2d6dd0debb5a9f0ec3 (diff) |
tests: Added MSVC11 variants to test suite
git-svn-id: http://pugixml.googlecode.com/svn/trunk@851 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-report.pl')
-rw-r--r-- | tests/autotest-report.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl index 42f39b8..b5ebd8c 100644 --- a/tests/autotest-report.pl +++ b/tests/autotest-report.pl @@ -11,6 +11,7 @@ sub prettysuffix return " CLR x64" if ($suffix eq '_clr_x64'); return " PPC" if ($suffix eq '_ppc'); return " WinCE" if ($suffix eq '_wince'); + return " ARM" if ($suffix eq '_arm'); return ""; } @@ -58,6 +59,8 @@ sub prettyplatform return "x360" if ($toolset =~ /^xbox360/); return "ps3" if ($toolset =~ /^ps3/); + return "arm" if ($toolset =~ /_arm$/); + return "arm" if ($toolset =~ /_wince$/); return "arm" if ($toolset =~ /^android/); return "arm" if ($toolset =~ /^bada/); return "arm" if ($toolset =~ /^blackberry/); |