diff options
author | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-06 09:14:04 +0000 |
---|---|---|
committer | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-06 09:14:04 +0000 |
commit | 8b8cf7977c8fa9ff6b2cf09bb45f9636f1cafe00 (patch) | |
tree | cdecd6954499947624d3ad829f6d848f1bd380af /tests/autotest-report.pl | |
parent | 7d57b320ade1ebaf6f564419c71bd4774128cded (diff) |
tests: Added Android to testing (STLport variant is only tested without exceptions because of library issues)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@848 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-report.pl')
-rw-r--r-- | tests/autotest-report.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl index 2b054ee..42f39b8 100644 --- a/tests/autotest-report.pl +++ b/tests/autotest-report.pl @@ -34,6 +34,7 @@ sub prettytoolset return "Sony PlayStation3 GCC" if ($toolset =~ /^ps3_gcc/); return "Sony PlayStation3 SNC" if ($toolset =~ /^ps3_snc/); + return "Android NDK (GCC)" . ($1 eq '_stlport' ? " STLport" : "") if ($toolset =~ /^android(.*)$/); return "bada SDK (GCC)" if ($toolset =~ /^bada$/); return "BlackBerry NDK (GCC)" if ($toolset =~ /^blackberry$/); @@ -57,6 +58,7 @@ sub prettyplatform return "x360" if ($toolset =~ /^xbox360/); return "ps3" if ($toolset =~ /^ps3/); + return "arm" if ($toolset =~ /^android/); return "arm" if ($toolset =~ /^bada/); return "arm" if ($toolset =~ /^blackberry/); |