diff options
author | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-02-12 04:38:54 +0000 |
---|---|---|
committer | Arseny Kapoulkine <arseny.kapoulkine@gmail.com> | 2014-02-12 04:38:54 +0000 |
commit | 284f56f5887030c78a6a66285b48484dc112bdd5 (patch) | |
tree | fd6f4acf09c95b7d087a6c9a405b79c187812c5d /tests/autotest-local.pl | |
parent | 53ba69915511626703ccc9c0f41f9535fd4919e1 (diff) |
Add MSVC 12 (2013) to autotest list
git-svn-id: https://pugixml.googlecode.com/svn/trunk@982 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-local.pl')
-rw-r--r-- | tests/autotest-local.pl | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/autotest-local.pl b/tests/autotest-local.pl index 6d7e50e..a419bb0 100644 --- a/tests/autotest-local.pl +++ b/tests/autotest-local.pl @@ -34,7 +34,18 @@ 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, msvc11, msvc11_x64, msvc11_clr, msvc11_clr_x64, msvc11_arm, xbox360, ps3_gcc, ps3_snc, msvc8_wince, bada, blackberry, android, android_stlport) : ($^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, + msvc11, msvc11_x64, msvc11_clr, msvc11_clr_x64, msvc11_arm, + msvc12, msvc12_x64, msvc12_clr, msvc12_clr_x64, msvc12_arm, + xbox360, ps3_gcc, ps3_snc, msvc8_wince, bada, blackberry, android, android_stlport) + : ($^O =~ /solaris/) + ? (suncc, suncc_x64) + : &gcctoolset(); $fast = scalar grep(/^fast$/, @ARGV); @toolsets = map { /^fast$/ ? () : ($_) } @ARGV; |