Merge branch 'master' into interrupt_test

This commit is contained in:
Danil Platonov
2026-06-04 12:08:36 -07:00
committed by GitHub
11 changed files with 236 additions and 115 deletions

View File

@@ -182,4 +182,17 @@ async fn sigint_interrupts_nonterminating_goals() {
format!("PROLOG={:?}.", env!("CARGO_BIN_EXE_scryer-prolog")),
"ok\n",
);
#[test]
#[cfg_attr(miri, ignore = "it takes too long to run")]
#[cfg_attr(
all(
target_arch = "x86",
target_os = "linux",
target_vendor = "unknown",
target_env = "gnu"
),
ignore = "FIXME was already broken before d50d42509903dc3cc1841eb757a703753de84754"
)]
fn discussion3359() {
load_module_test("tests-pl/discussion3359.pl", "");
}