[Tarantool-patches] [PATCH luajit] test: disable tests for OOM on trace on *BSD

Maksim Kokryashkin max.kokryashkin at gmail.com
Tue Oct 31 19:06:58 MSK 2023


These tests are flaky on *BSD, because JIT fails to allocate
the mcode memory. This patch disables them on *BSD platforms.
---
Branch: https://github.com/tarantool/luajit/tree/fckxorg/lj-1004-fix-flaky
PR: https://github.com/tarantool/tarantool/pull/9318
 test/tarantool-tests/gh-7745-oom-on-trace.test.lua    | 2 ++
 test/tarantool-tests/lj-1004-oom-error-frame.test.lua | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/test/tarantool-tests/gh-7745-oom-on-trace.test.lua b/test/tarantool-tests/gh-7745-oom-on-trace.test.lua
index 9ac41ac7..e700f081 100644
--- a/test/tarantool-tests/gh-7745-oom-on-trace.test.lua
+++ b/test/tarantool-tests/gh-7745-oom-on-trace.test.lua
@@ -7,6 +7,8 @@ local test = tap.test('OOM on trace'):skipcond({
                                                    (jit.os == 'OSX'),
   ['Disabled on MacOS due to #8652'] = jit.os == 'OSX',
   ['Test requires JIT enabled'] = not jit.status(),
+  -- OOM during the trace mcode allocation.
+  ['Disabled on *BSD due to #4819'] = jit.os == 'BSD',
 })

 test:plan(1)
diff --git a/test/tarantool-tests/lj-1004-oom-error-frame.test.lua b/test/tarantool-tests/lj-1004-oom-error-frame.test.lua
index 3be6b555..8f831177 100644
--- a/test/tarantool-tests/lj-1004-oom-error-frame.test.lua
+++ b/test/tarantool-tests/lj-1004-oom-error-frame.test.lua
@@ -4,6 +4,8 @@ local test  = tap.test('lj-1004-oom-error-frame'):skipcond({
   ['Test requires JIT enabled'] = not jit.status(),
   ['Test requires GC64 mode disabled'] = ffi.abi('gc64'),
   ['Disabled on MacOS due to #8652'] = jit.os == 'OSX',
+  -- OOM during the trace mcode allocation.
+  ['Disabled on *BSD due to #4819'] = jit.os == 'BSD',
 })

 test:plan(2)
--
2.39.3 (Apple Git-145)



More information about the Tarantool-patches mailing list