summaryrefslogtreecommitdiffstats
path: root/tests/run-coverage/closure_macro_async.coverage
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-coverage/closure_macro_async.coverage')
-rw-r--r--tests/run-coverage/closure_macro_async.coverage20
1 files changed, 8 insertions, 12 deletions
diff --git a/tests/run-coverage/closure_macro_async.coverage b/tests/run-coverage/closure_macro_async.coverage
index 0e4365fc7..74247f1bc 100644
--- a/tests/run-coverage/closure_macro_async.coverage
+++ b/tests/run-coverage/closure_macro_async.coverage
@@ -1,5 +1,5 @@
LL| |// compile-flags: --edition=2018
- LL| |#![feature(no_coverage)]
+ LL| |#![feature(coverage_attribute)]
LL| |
LL| |macro_rules! bail {
LL| | ($msg:literal $(,)?) => {
@@ -40,9 +40,9 @@
LL| 1| Ok(())
LL| 1|}
LL| |
- LL| |#[no_coverage]
+ LL| |#[coverage(off)]
LL| |fn main() {
- LL| | executor::block_on(test());
+ LL| | executor::block_on(test()).unwrap();
LL| |}
LL| |
LL| |mod executor {
@@ -52,22 +52,18 @@
LL| | task::{Context, Poll, RawWaker, RawWakerVTable, Waker},
LL| | };
LL| |
- LL| | #[no_coverage]
+ LL| | #[coverage(off)]
LL| | pub fn block_on<F: Future>(mut future: F) -> F::Output {
LL| | let mut future = unsafe { Pin::new_unchecked(&mut future) };
LL| | use std::hint::unreachable_unchecked;
LL| | static VTABLE: RawWakerVTable = RawWakerVTable::new(
- LL| |
- LL| | #[no_coverage]
+ LL| | #[coverage(off)]
LL| | |_| unsafe { unreachable_unchecked() }, // clone
- LL| |
- LL| | #[no_coverage]
+ LL| | #[coverage(off)]
LL| | |_| unsafe { unreachable_unchecked() }, // wake
- LL| |
- LL| | #[no_coverage]
+ LL| | #[coverage(off)]
LL| | |_| unsafe { unreachable_unchecked() }, // wake_by_ref
- LL| |
- LL| | #[no_coverage]
+ LL| | #[coverage(off)]
LL| | |_| (),
LL| | );
LL| | let waker = unsafe { Waker::from_raw(RawWaker::new(core::ptr::null(), &VTABLE)) };