diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-26 05:00:09 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-26 05:00:09 +0000 |
commit | a4aa658f63e91004ed05a593db224bce30a7b956 (patch) | |
tree | a4e61eb484d12f3971c85701ad36ec846406f820 | |
parent | 947026e6d7b17f8318371acd6a58647ddebc784c (diff) |
tests: Added Solaris/Sun C++ to report formatter
git-svn-id: http://pugixml.googlecode.com/svn/trunk@455 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | tests/autotest-report.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl index 5a86478..7d9ceb7 100644 --- a/tests/autotest-report.pl +++ b/tests/autotest-report.pl @@ -8,6 +8,7 @@ sub prettytoolset return "Borland C++ 5.82" if ($toolset eq 'bcc');
return "Metrowerks CodeWarrior 8" if ($toolset eq 'cw');
return "Digital Mars C++ 8.51" if ($toolset eq 'dmc');
+ return "Sun C++ 5.10" if ($toolset eq 'suncc');
return "Intel C++ Compiler $1.0" if ($toolset =~ /^ic(\d+)$/);
return "MinGW32 (GCC $1.$2)" if ($toolset =~ /^mingw(\d)(\d)$/);
@@ -23,7 +24,9 @@ sub prettyplatform {
my $platform = shift;
- return "macos32" if ($platform =~ /darwin/);
+ return "solaris" if ($platform =~ /solaris/);
+
+ return "macos" if ($platform =~ /darwin/);
return "linux64" if ($platform =~ /64-linux/);
return "linux32" if ($platform =~ /86-linux/);
|