tests: Minor fixes

git-svn-id: http://pugixml.googlecode.com/svn/trunk@428 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2010-05-17 07:45:29 +00:00
parent dd9de685eb
commit 0826f0565b
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ if ( ! $(toolset) )
{ {
if ( $(UNIX) ) if ( $(UNIX) )
{ {
toolset = "gcc" ; toolset = "gcc" [ Shell "gcc -dumpversion" ] ;
} }
else else
{ {

View File

@ -17,7 +17,7 @@ sub permute
sub gcctoolset sub gcctoolset
{ {
return 'gcc' . `gcc -dumpversion`; return 'gcc' . chomp(`gcc -dumpversion`);
} }
$fast = (shift eq 'fast'); $fast = (shift eq 'fast');