Skip to content
Snippets Groups Projects
Commit 7703d96d authored by arseny.kapoulkine's avatar arseny.kapoulkine
Browse files

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
parent 5a6b19b2
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ DEPCACHE.standard = $(BUILD)/.depcache ; ...@@ -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) ...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment