Skip to content

Commit b19468f

Browse files
authored
chore: CI: disable problematic fsanitize tests (#11415)
1 parent 958aa71 commit b19468f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,8 @@ jobs:
267267
"CMAKE_PRESET": "sanitize",
268268
// `StackOverflow*` correctly triggers ubsan
269269
// `reverse-ffi` fails to link in sanitizers
270-
"CTEST_OPTIONS": "-E 'StackOverflow|reverse-ffi'"
270+
// `interactive` fails/timeouts nondeterministically, would need to be investigated.
271+
"CTEST_OPTIONS": "-E 'StackOverflow|reverse-ffi|interactive'"
271272
},
272273
{
273274
"name": "macOS",

tests/lean/run/async_select_channel.lean

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ def testIt (capacity : Option Nat) : Async Bool := do
7878
ch2.sync.send msg
7979

8080
let acc ← await recvTask
81+
-- TODO: we seem to nondeterministically create reference cycles without these, investigate
82+
ch1.close
83+
ch2.close
8184
return acc == messages.sum
8285

8386
/-- info: true -/

0 commit comments

Comments
 (0)