diff options
author | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-06 07:13:25 +0000 |
---|---|---|
committer | arseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640> | 2012-03-06 07:13:25 +0000 |
commit | 72dd6038a23029a0fd537237540f99507dbc361f (patch) | |
tree | c48cbe3f6038758ecf850592206ebf2c7fefa969 /tests/autotest-report.pl | |
parent | c3bfd7abc0651363fd924d624b258f78df4bd7dc (diff) |
tests: Added BlackBerry NDK to test suite
git-svn-id: http://pugixml.googlecode.com/svn/trunk@845 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-report.pl')
-rw-r--r-- | tests/autotest-report.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl index 360fa84..2b054ee 100644 --- a/tests/autotest-report.pl +++ b/tests/autotest-report.pl @@ -34,7 +34,8 @@ sub prettytoolset return "Sony PlayStation3 GCC" if ($toolset =~ /^ps3_gcc/); return "Sony PlayStation3 SNC" if ($toolset =~ /^ps3_snc/); - return "BadaSDK (GCC)" if ($toolset =~ /^bada$/); + return "bada SDK (GCC)" if ($toolset =~ /^bada$/); + return "BlackBerry NDK (GCC)" if ($toolset =~ /^blackberry$/); $toolset; } @@ -57,6 +58,7 @@ sub prettyplatform return "ps3" if ($toolset =~ /^ps3/); return "arm" if ($toolset =~ /^bada/); + return "arm" if ($toolset =~ /^blackberry/); return "win64" if ($platform =~ /MSWin32-x64/); return "win32" if ($platform =~ /MSWin32/); |