diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:45:29 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2010-05-17 07:45:29 +0000 |
commit | 0826f0565b87f50600298b23b850b3a9a8017ba2 (patch) | |
tree | e125fb98def0bb62deac28576e0c28f520b00e62 /tests/autotest-local.pl | |
parent | dd9de685eb1af432a88af7840ca01f052ddb0c7e (diff) |
tests: Minor fixes
git-svn-id: http://pugixml.googlecode.com/svn/trunk@428 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-local.pl')
-rw-r--r-- | tests/autotest-local.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/autotest-local.pl b/tests/autotest-local.pl index ebe785d..0bb55a6 100644 --- a/tests/autotest-local.pl +++ b/tests/autotest-local.pl @@ -17,7 +17,7 @@ sub permute sub gcctoolset
{
- return 'gcc' . `gcc -dumpversion`;
+ return 'gcc' . chomp(`gcc -dumpversion`);
}
$fast = (shift eq 'fast');
|