summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorarseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640>2012-03-06 07:13:25 +0000
committerarseny.kapoulkine@gmail.com <arseny.kapoulkine@gmail.com@99668b35-9821-0410-8761-19e4c4f06640>2012-03-06 07:13:25 +0000
commit72dd6038a23029a0fd537237540f99507dbc361f (patch)
treec48cbe3f6038758ecf850592206ebf2c7fefa969 /tests
parentc3bfd7abc0651363fd924d624b258f78df4bd7dc (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')
-rw-r--r--tests/autotest-local.pl2
-rw-r--r--tests/autotest-report.pl4
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/autotest-local.pl b/tests/autotest-local.pl
index fd81be0..cf1fd64 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, bada) : ($^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, blackberry) : ($^O =~ /solaris/) ? (suncc, suncc_x64) : &gcctoolset();
$fast = scalar grep(/^fast$/, @ARGV);
@toolsets = map { /^fast$/ ? () : ($_) } @ARGV;
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/);