Skip to content
Snippets Groups Projects
Commit 85c0bf06 authored by Pavel Cherenkov's avatar Pavel Cherenkov
Browse files

macosx: updated README.MacOSX; filters altered to allow BFD warnings only for 0x2? load commands

parent 26ac5a48
No related branches found
No related tags found
No related merge requests found
......@@ -36,14 +36,20 @@ CC=gcc-mp-4.6 make
5. Run tarantool test suite
-------------
NB: box/lua.test in not runnable on MacOS X at this point, in order to skip it add:
NB: the following tests are not runnable on MacOS X at this point:
disabled = lua.test
box/lua.test
box_big/lua.test
connector_c/xlog_rpl.test
to tarantool/test/box/suite.ini file;
To disable those add each of them to the 'disabled' clause in suite.ini file
in the appropriate directory; for instance, tarantool/test/box/suite.ini must
be edited to disable any test in the 'box' suite;
To run all tests then, execute:
cd ~/build/tarantool/test
PATH=~/build/bin:$PATH ./run
./run
-- EOF
import sys
import os
sys.stdout.push_filter("unable to read unknown load command 0x\d+", "")
# mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356
sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "")
server.test_option("--help")
server.test_option("-h")
sys.stdout.push_filter("(/\S+)+/tarantool", "tarantool")
......
......@@ -8,7 +8,8 @@ import yaml
import sys
from signal import SIGUSR1
sys.stdout.push_filter("unable to read unknown load command 0x\d+", "")
# mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356
sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "")
print """
# Verify that the server starts from a pre-recorded snapshot.
......
......@@ -5,7 +5,8 @@ import os
import sys
import shutil
sys.stdout.push_filter("unable to read unknown load command 0x\d+", "")
# mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356
sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "")
print """
# Bug #708685:
......
......@@ -3,6 +3,6 @@ description = tarantool/box, various namespace configurations and properties
config = tarantool.cfg
# put disabled tests here
#disabled = sql.test
disabled = lua.test
# disabled = lua.test
# put disabled in valgrind test here
#valgrind_disabled = ...
......@@ -4,7 +4,8 @@
import os
import sys
sys.stdout.push_filter("unable to read unknown load command 0x\d+", "")
# mask BFD warnings: https://bugs.launchpad.net/tarantool/+bug/1018356
sys.stdout.push_filter("unable to read unknown load command 0x2\d+", "")
print """
# Bug #855616:
......
......@@ -3,6 +3,6 @@ description = tarantool/box connector C
config = cfg/tarantool.cfg
# put disabled tests here
#disabled =
disabled = xlog_rpl.test
# disabled = xlog_rpl.test
# put disabled in valgrind test here
#valgrind_disabled =
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