From a4aa658f63e91004ed05a593db224bce30a7b956 Mon Sep 17 00:00:00 2001 From: "arseny.kapoulkine" Date: Wed, 26 May 2010 05:00:09 +0000 Subject: tests: Added Solaris/Sun C++ to report formatter git-svn-id: http://pugixml.googlecode.com/svn/trunk@455 99668b35-9821-0410-8761-19e4c4f06640 --- tests/autotest-report.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'tests/autotest-report.pl') 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/); -- cgit v1.2.3