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
Branches
Tags
No related merge requests found
...@@ -36,14 +36,20 @@ CC=gcc-mp-4.6 make ...@@ -36,14 +36,20 @@ CC=gcc-mp-4.6 make
5. Run tarantool test suite 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 cd ~/build/tarantool/test
PATH=~/build/bin:$PATH ./run ./run
-- EOF -- EOF
import sys import sys
import os 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("--help")
server.test_option("-h") server.test_option("-h")
sys.stdout.push_filter("(/\S+)+/tarantool", "tarantool") sys.stdout.push_filter("(/\S+)+/tarantool", "tarantool")
......
...@@ -8,7 +8,8 @@ import yaml ...@@ -8,7 +8,8 @@ import yaml
import sys import sys
from signal import SIGUSR1 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 """ print """
# Verify that the server starts from a pre-recorded snapshot. # Verify that the server starts from a pre-recorded snapshot.
......
...@@ -5,7 +5,8 @@ import os ...@@ -5,7 +5,8 @@ import os
import sys import sys
import shutil 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 """ print """
# Bug #708685: # Bug #708685:
......
...@@ -3,6 +3,6 @@ description = tarantool/box, various namespace configurations and properties ...@@ -3,6 +3,6 @@ description = tarantool/box, various namespace configurations and properties
config = tarantool.cfg config = tarantool.cfg
# put disabled tests here # put disabled tests here
#disabled = sql.test #disabled = sql.test
disabled = lua.test # disabled = lua.test
# put disabled in valgrind test here # put disabled in valgrind test here
#valgrind_disabled = ... #valgrind_disabled = ...
...@@ -4,7 +4,8 @@ ...@@ -4,7 +4,8 @@
import os import os
import sys 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 """ print """
# Bug #855616: # Bug #855616:
......
...@@ -3,6 +3,6 @@ description = tarantool/box connector C ...@@ -3,6 +3,6 @@ description = tarantool/box connector C
config = cfg/tarantool.cfg config = cfg/tarantool.cfg
# put disabled tests here # put disabled tests here
#disabled = #disabled =
disabled = xlog_rpl.test # disabled = xlog_rpl.test
# put disabled in valgrind test here # put disabled in valgrind test here
#valgrind_disabled = #valgrind_disabled =
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment