Skip to content

Commit 0e9a88c

Browse files
committed
fix windows miri
1 parent 143bf31 commit 0e9a88c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/tools/miri/tests/fail-dep/concurrency/windows_join_main.stderr

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ note: inside `main`
2424
LL | / thread::spawn(|| {
2525
LL | | unsafe {
2626
LL | | assert_eq!(WaitForSingleObject(MAIN_THREAD, INFINITE), WAIT_OBJECT_0);
27-
LL | | }
28-
LL | | })
27+
... |
2928
LL | | .join()
3029
| |___________^
3130

src/tools/miri/tests/fail-dep/concurrency/windows_join_self.stderr

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ LL | / thread::spawn(|| {
2424
LL | | unsafe {
2525
LL | | let native = GetCurrentThread();
2626
LL | | assert_eq!(WaitForSingleObject(native, INFINITE), WAIT_OBJECT_0);
27-
... |
27+
LL | | }
28+
LL | | })
2829
LL | | .join()
2930
| |___________^
3031

0 commit comments

Comments
 (0)