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 | |
parent | dd9de685eb1af432a88af7840ca01f052ddb0c7e (diff) |
tests: Minor fixes
git-svn-id: http://pugixml.googlecode.com/svn/trunk@428 99668b35-9821-0410-8761-19e4c4f06640
-rw-r--r-- | Jamfile.jam | 2 | ||||
-rw-r--r-- | tests/autotest-local.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Jamfile.jam b/Jamfile.jam index e3e5e9b..2a56740 100644 --- a/Jamfile.jam +++ b/Jamfile.jam @@ -15,7 +15,7 @@ if ( ! $(toolset) ) {
if ( $(UNIX) )
{
- toolset = "gcc" ;
+ toolset = "gcc" [ Shell "gcc -dumpversion" ] ;
}
else
{
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');
|