summaryrefslogtreecommitdiff
path: root/tests/thread.rs
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2021-04-16 22:26:37 +0100
committerAlex Orlenko <zxteam@protonmail.com>2021-04-16 22:27:28 +0100
commite26cec5db9d807f6e8fc284912d2d72dace71f65 (patch)
tree4af93190c205eadda275617f1c03283a4f265ea9 /tests/thread.rs
parent0bd36b42e7d416f2821950fb43b0086643366818 (diff)
downloadmlua-e26cec5db9d807f6e8fc284912d2d72dace71f65.zip
Drop 'feature(link_args)' (removed from nightly). Don't run tests for LuaJIT 2.0.5
Diffstat (limited to 'tests/thread.rs')
-rw-r--r--tests/thread.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/thread.rs b/tests/thread.rs
index 1094052..fd2f20c 100644
--- a/tests/thread.rs
+++ b/tests/thread.rs
@@ -1,15 +1,3 @@
-#![cfg_attr(
- all(feature = "luajit", target_os = "macos", target_arch = "x86_64"),
- feature(link_args)
-)]
-
-#[cfg_attr(
- all(feature = "luajit", target_os = "macos", target_arch = "x86_64"),
- link_args = "-pagezero_size 10000 -image_base 100000000",
- allow(unused_attributes)
-)]
-extern "system" {}
-
use std::panic::catch_unwind;
use mlua::{Error, Function, Lua, Result, Thread, ThreadStatus};