summaryrefslogtreecommitdiff
path: root/tests/autotest-local.pl
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-17 07:54:38 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-05-17 07:54:38 +0000
commitefc76ba8d40080a6be64cfe0eaa3043503f41bfa (patch)
treedeee4cd5f3c93a02f4dcaeb136dc1962b69e0c95 /tests/autotest-local.pl
parent754e438db8d7c935417df1d847d0f1494daed8f1 (diff)
tests: Final fix
git-svn-id: http://pugixml.googlecode.com/svn/trunk@431 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-local.pl')
-rw-r--r--tests/autotest-local.pl5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/autotest-local.pl b/tests/autotest-local.pl
index 0bb55a6..6763b8b 100644
--- a/tests/autotest-local.pl
+++ b/tests/autotest-local.pl
@@ -17,7 +17,10 @@ sub permute
sub gcctoolset
{
- return 'gcc' . chomp(`gcc -dumpversion`);
+ my $gccversion = `gcc -dumpversion`;
+ chomp($gccversion);
+
+ return "gcc$gccversion";
}
$fast = (shift eq 'fast');