summaryrefslogtreecommitdiff
path: root/tests/autotest-local.pl
diff options
context:
space:
mode:
authorarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-02 07:25:38 +0000
committerarseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640>2010-06-02 07:25:38 +0000
commite596d86ca0e45508a0c82ae18495ed19de360d8d (patch)
tree2dc0e979abb9ffba481a737f9d790874cd8841a5 /tests/autotest-local.pl
parentae83fae821963744ff2468bae8fc5a7ee696bee7 (diff)
tests: Use ... instead of ### as autotest info prefix (sh compatibility)
git-svn-id: http://pugixml.googlecode.com/svn/trunk@498 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'tests/autotest-local.pl')
-rw-r--r--tests/autotest-local.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/autotest-local.pl b/tests/autotest-local.pl
index 261852a..10a3f8e 100644
--- a/tests/autotest-local.pl
+++ b/tests/autotest-local.pl
@@ -81,16 +81,16 @@ foreach $toolset (@toolsets)
# parse build output
while (<PIPE>)
{
- ### autotest release [wchar] success
- if (/^### autotest (\S+) \[(.*?)\] success/)
+ # ... autotest release [wchar] success
+ if (/^\.\.\. autotest (\S+) \[(.*?)\] success/)
{
my $configuration = $1;
my $defineset = ($2 eq $stddefine) ? '' : $2;
print "### autotest $Config{archname} $toolset $configuration [$defineset] success\n";
}
- ### autotest release [wchar] gcov
- elsif (/^### autotest (\S+) \[(.*?)\] gcov/)
+ # ... autotest release [wchar] gcov
+ elsif (/^\.\.\. autotest (\S+) \[(.*?)\] gcov/)
{
my $configuration = $1;
my $defineset = ($2 eq $stddefine) ? '' : $2;