tests: ignore errors with enabled ASAN in python bindings

temporary solution... as it ends with
	undefined symbol: __asan_option_detect_stack_use_after_return

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2019-04-15 12:58:48 +02:00
parent 82e39473a5
commit 1271e63c49
5 changed files with 11 additions and 3 deletions

View File

@ -20,6 +20,10 @@ ts_check_prog "mkfs.ext4"
ts_init_py libmount
if [ "$TS_ENABLE_ASAN" == "yes" ]; then
TS_KNOWN_FAIL="yes"
fi
TESTPROG="$TS_HELPER_PYLIBMOUNT_CONTEXT"
[ -x $TESTPROG ] || ts_die "test script missing"

View File

@ -19,6 +19,10 @@ ts_check_prog "mkfs.ext4"
ts_init_py libmount
if [ "$TS_ENABLE_ASAN" == "yes" ]; then
TS_KNOWN_FAIL="yes"
fi
TESTPROG="$TS_HELPER_PYLIBMOUNT_CONTEXT"
[ -x $TESTPROG ] || ts_die "test script missing"

View File

@ -9,7 +9,7 @@ TS_DESC="tab files-py"
ts_init "$*"
ts_init_py libmount
if [ -f "$ASAN_SYMBOLIZER_PATH" ]; then
if [ "$TS_ENABLE_ASAN" == "yes" ]; then
TS_KNOWN_FAIL="yes"
fi

View File

@ -10,7 +10,7 @@ ts_skip_nonroot
ts_init_py libmount
if [ -f "$ASAN_SYMBOLIZER_PATH" ]; then
if [ "$TS_ENABLE_ASAN" == "yes" ]; then
TS_KNOWN_FAIL="yes"
fi

View File

@ -10,7 +10,7 @@ ts_init "$*"
ts_init_py libmount
ts_skip_nonroot
if [ -f "$ASAN_SYMBOLIZER_PATH" ]; then
if [ "$TS_ENABLE_ASAN" == "yes" ]; then
TS_KNOWN_FAIL="yes"
fi