[Tarantool-patches] [PATCH v1] test: restore skpicond for asan unit/guard

Alexander V. Tikhonov avtikhon at tarantool.org
Wed Aug 26 09:18:16 MSK 2020


Found that after commit:

  eec54b5741c421da51a4b58cac774b77d2dff6fc "asan/lsan: cleanup suppression lists"

where was removed blocking file unit/guard.skipcond for asan testing,
it was needed much more fixes from #4609, to enable this test on asan.
After investigation the group of needed patches to be ported decided
not to use it for 2.4 release branch and to restore the skip condition
file to block the issue with the test to restore the release branch
stability.

Part of #4360
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4360-skip-test-guard-2.4
Issue: https://github.com/tarantool/tarantool/issues/4360

 test/unit/guard.skipcond | 7 +++++++
 1 file changed, 7 insertions(+)
 create mode 100644 test/unit/guard.skipcond

diff --git a/test/unit/guard.skipcond b/test/unit/guard.skipcond
new file mode 100644
index 000000000..e46fd1088
--- /dev/null
+++ b/test/unit/guard.skipcond
@@ -0,0 +1,7 @@
+import os
+
+# Disabled at ASAN build due to issue #4360.
+if os.getenv("ASAN") == 'ON':
+    self.skip = 1
+
+# vim: set ft=python:
-- 
2.17.1



More information about the Tarantool-patches mailing list