tests: Use colon instead of semicolon as define set separator (sh compatibility)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@496 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
parent
5a6b19b278
commit
7703d96dcb
@ -56,7 +56,7 @@ DEPCACHE.standard = $(BUILD)/.depcache ;
|
|||||||
include "Jamrules.jam" ;
|
include "Jamrules.jam" ;
|
||||||
|
|
||||||
# split define sets into list
|
# split define sets into list
|
||||||
local DEFINESETS = [ Split $(defines) : ';' ] ;
|
local DEFINESETS = [ Split $(defines) : ':' ] ;
|
||||||
|
|
||||||
# split configurations into list
|
# split configurations into list
|
||||||
local CONFIGURATIONS = [ Split $(configuration) : ',' ] ;
|
local CONFIGURATIONS = [ Split $(configuration) : ',' ] ;
|
||||||
|
|||||||
@ -62,7 +62,7 @@ foreach $toolset (@toolsets)
|
|||||||
if ($defineset !~ /NO_XPATH/ && $defineset =~ /NO_EXCEPTIONS/) { next; }
|
if ($defineset !~ /NO_XPATH/ && $defineset =~ /NO_EXCEPTIONS/) { next; }
|
||||||
if ($defineset !~ /NO_XPATH/ && $defineset =~ /NO_STL/) { next; }
|
if ($defineset !~ /NO_XPATH/ && $defineset =~ /NO_STL/) { next; }
|
||||||
|
|
||||||
$cmdline .= ";$defineset" if ($defineset ne '');
|
$cmdline .= ":$defineset" if ($defineset ne '');
|
||||||
|
|
||||||
# any configuration with prepare but without result is treated as failed
|
# any configuration with prepare but without result is treated as failed
|
||||||
foreach $configuration (@configurations)
|
foreach $configuration (@configurations)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user