adjust ignore reason

This commit is contained in:
Bennet Bleßmann
2024-07-06 18:24:16 +02:00
parent ea041a40f9
commit b32498b37c
4 changed files with 27 additions and 24 deletions

View File

@@ -4,7 +4,7 @@ use serial_test::serial;
// issue #831
#[serial]
#[test]
#[cfg_attr(miri, ignore = "blocked on helper.rs UB")]
#[cfg_attr(miri, ignore = "it takes too long to run")]
fn call_0() {
load_module_test(
"tests-pl/issue831-call0.pl",
@@ -15,7 +15,7 @@ fn call_0() {
// issue #2361
#[serial]
#[test]
#[cfg_attr(miri, ignore = "blocked on helper.rs UB")]
#[cfg_attr(miri, ignore = "it takes too long to run")]
fn call_qualification() {
load_module_test("tests-pl/issue2361-call-qualified.pl", "");
}