Skip to content

Commit 9536ec3

Browse files
committed
Temporarily ignore regex test which gets miscompiled when using an LLVM sysroot
cc rust-lang#1395
1 parent c974bc8 commit 9536ec3

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
From 5d4afb8d807d181038b6a004d17ed055a8d191b2 Mon Sep 17 00:00:00 2001
2+
From: bjorn3 <[email protected]>
3+
Date: Mon, 2 Oct 2023 13:59:00 +0000
4+
Subject: [PATCH] Ignore test which gets miscompiled with llvm sysroot
5+
6+
---
7+
regex-automata/src/util/pool.rs | 2 ++
8+
1 file changed, 2 insertions(+)
9+
10+
diff --git a/regex-automata/src/util/pool.rs b/regex-automata/src/util/pool.rs
11+
index c03d7b0..28b233b 100644
12+
--- a/regex-automata/src/util/pool.rs
13+
+++ b/regex-automata/src/util/pool.rs
14+
@@ -1081,6 +1081,8 @@ mod tests {
15+
// into the pool. This in turn resulted in this test producing a data race.
16+
#[cfg(feature = "std")]
17+
#[test]
18+
+ // FIXME(rustc_codegen_cranelift#1395) miscompilation of thread::scope with LLVM sysroot
19+
+ #[ignore]
20+
fn thread_owner_sync() {
21+
let pool = Pool::new(|| vec!['a']);
22+
{
23+
--
24+
2.34.1
25+

0 commit comments

Comments
 (0)