diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-07 16:07:03 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-06-07 16:07:03 +0000 |
commit | 47c17a25d934450a28fdceecaecf1100943381a9 (patch) | |
tree | 22387c9c184da45703beb25f23131a446bc77bfd /tests/autotest-report.pl | |
parent | 45a0392656faaac09a8c7e322ead46a84bb1f1a8 (diff) |
tests: Added C++0x support
git-svn-id: http://pugixml.googlecode.com/svn/trunk@505 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-report.pl')
-rw-r--r-- | tests/autotest-report.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/autotest-report.pl b/tests/autotest-report.pl index 8ed8dd9..151355b 100644 --- a/tests/autotest-report.pl +++ b/tests/autotest-report.pl @@ -13,6 +13,7 @@ sub prettytoolset return "Intel C++ Compiler $1.0" if ($toolset =~ /^ic(\d+)$/);
return "Intel C++ Compiler $1.0 x64" if ($toolset =~ /^ic(\d+)_x64$/);
return "MinGW (GCC $1.$2)" if ($toolset =~ /^mingw(\d)(\d)$/);
+ return "MinGW (GCC $1.$2) C++0x" if ($toolset =~ /^mingw(\d)(\d)_0x$/);
return "MinGW (GCC $1.$2) x64" if ($toolset =~ /^mingw(\d)(\d)_x64$/);
return "Microsoft Visual C++ 7.1" if ($toolset eq 'msvc71');
return "Microsoft Visual C++ $1.0" if ($toolset =~ /^msvc(\d+)$/);
|