This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Tarantool -- an efficient key/value data store".

The branch master has been updated
       via  0df9a413fc78811a4ba096e08aaa0f1c76248bef (commit)
      from  fc86d1d47b61b4ed7b2268337882c3437bf350e9 (commit)

Summary of changes:
 test/box/args.test |    2 +-
 test/box/show.test |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit 0df9a413fc78811a4ba096e08aaa0f1c76248bef
Author: Konstantin Osipov <[email protected]>
Date:   Thu Feb 24 22:50:55 2011 +0300

    Fix a build failure in buildbot.
    
    Correct a regexp pattern in test suppression filter
    to work in a more modern version of python.
    In the new python \S matches '"', and the test
    output is different compared to the recorded one.

diff --git a/test/box/args.test b/test/box/args.test
index 05e9429..fa25958 100644
--- a/test/box/args.test
+++ b/test/box/args.test
@@ -9,7 +9,7 @@ server.test_option("-c")
 server.test_option("--config tarantool.cfg")
 server.test_option("--daemonize")
 sys.stdout.pop_filter()
-sys.stdout.push_filter("(\d)\.\d\.\d(-\d+-\S+)?", 
"\\1.minor.patch-<rev>-<commit>")
+sys.stdout.push_filter("(\d)\.\d\.\d(-\d+-\w+)?", 
"\\1.minor.patch-<rev>-<commit>")
 server.test_option("--version")
 server.test_option("-V          ")
 sys.stdout.pop_filter()
diff --git a/test/box/show.test b/test/box/show.test
index 1d0472c..d31da67 100644
--- a/test/box/show.test
+++ b/test/box/show.test
@@ -13,7 +13,7 @@ exec sql "insert into t0 values (1, 'tuple')"
 exec admin "save snapshot"
 exec sql "delete from t0 where k0 = 1"
 exec admin "exec module command"
-sys.stdout.push_filter("(\d)\.\d\.\d(-\d+-\S+)?", 
"\\1.minor.patch-<rev>-<commit>")
+sys.stdout.push_filter("(\d)\.\d\.\d(-\d+-\w+)?", 
"\\1.minor.patch-<rev>-<commit>")
 sys.stdout.push_filter("pid: \d+", "pid: <pid>")
 sys.stdout.push_filter("uptime: \d+", "uptime: <uptime>")
 exec admin "show info"

-- 
Tarantool -- an efficient key/value data store

_______________________________________________
Mailing list: https://launchpad.net/~tarantool-developers
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~tarantool-developers
More help   : https://help.launchpad.net/ListHelp

Reply via email to