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:
arseny.kapoulkine 2010-06-02 06:51:41 +00:00
parent 5a6b19b278
commit 7703d96dcb
2 changed files with 2 additions and 2 deletions

View File

@ -56,7 +56,7 @@ DEPCACHE.standard = $(BUILD)/.depcache ;
include "Jamrules.jam" ;
# split define sets into list
local DEFINESETS = [ Split $(defines) : ';' ] ;
local DEFINESETS = [ Split $(defines) : ':' ] ;
# split configurations into list
local CONFIGURATIONS = [ Split $(configuration) : ',' ] ;

View File

@ -62,7 +62,7 @@ foreach $toolset (@toolsets)
if ($defineset !~ /NO_XPATH/ && $defineset =~ /NO_EXCEPTIONS/) { 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
foreach $configuration (@configurations)