diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-11 07:30:36 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-11 07:30:36 +0000 |
commit | f8179496c7fdab6ba9877cef3715fafce4a575b2 (patch) | |
tree | 7d101d29452a7b544ed8e05ba8daab0cef200c55 /tests/autotest-report.pl | |
parent | 6e1777619e4b668fdbb5952cd1863283cf539e7c (diff) |
tests: Added SunCC x64 support
git-svn-id: http://pugixml.googlecode.com/svn/trunk@510 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-report.pl')
-rw-r--r-- | tests/autotest-report.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl index b685314..3a70b15 100644 --- a/tests/autotest-report.pl +++ b/tests/autotest-report.pl @@ -7,7 +7,7 @@ sub prettysuffix return " C++0x" if ($suffix eq '_0x');
return " x64" if ($suffix eq '_x64');
- return " PowerPC" if ($suffix eq '_ppc');
+ return " PPC" if ($suffix eq '_ppc');
return "";
}
@@ -19,7 +19,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 "Sun C++ 5.10" . prettysuffix($1) if ($toolset =~ /^suncc(.*)$/);
return "Intel C++ Compiler $1.0" . prettysuffix($2) if ($toolset =~ /^ic(\d+)(.*)$/);
return "MinGW (GCC $1.$2)" . prettysuffix($3) if ($toolset =~ /^mingw(\d)(\d)(.*)$/);
|