about summary refs log tree commit diff
path: root/tests/coverage-map/coroutine.rs
diff options
context:
space:
mode:
authorZalathar <Zalathar@users.noreply.github.com>2023-10-28 21:23:23 +1100
committerZalathar <Zalathar@users.noreply.github.com>2023-11-07 11:15:18 +1100
commitf5df56b26b5a9c46299e74591602940c0e48b08c (patch)
tree5e45e4f86e3b70a650bef318bbbae57b1ba26554 /tests/coverage-map/coroutine.rs
parent8eef39f0825f03629373e430063f331149da6d37 (diff)
downloadrust-f5df56b26b5a9c46299e74591602940c0e48b08c.tar.gz
rust-f5df56b26b5a9c46299e74591602940c0e48b08c.zip
coverage: Flatten `coverage-map/status-quo/` into its parent directory
Diffstat (limited to 'tests/coverage-map/coroutine.rs')
-rw-r--r--tests/coverage-map/coroutine.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/coverage-map/coroutine.rs b/tests/coverage-map/coroutine.rs
new file mode 100644
index 00000000000..86d19af6f4f
--- /dev/null
+++ b/tests/coverage-map/coroutine.rs
@@ -0,0 +1,30 @@
+#![feature(coroutines, coroutine_trait)]
+
+use std::ops::{Coroutine, CoroutineState};
+use std::pin::Pin;
+
+// The following implementation of a function called from a `yield` statement
+// (apparently requiring the Result and the `String` type or constructor)
+// creates conditions where the `coroutine::StateTransform` MIR transform will
+// drop all `Counter` `Coverage` statements from a MIR. `simplify.rs` has logic
+// to handle this condition, and still report dead block coverage.
+fn get_u32(val: bool) -> Result<u32, String> {
+    if val { Ok(1) } else { Err(String::from("some error")) }
+}
+
+fn main() {
+    let is_true = std::env::args().len() == 1;
+    let mut coroutine = || {
+        yield get_u32(is_true);
+        return "foo";
+    };
+
+    match Pin::new(&mut coroutine).resume(()) {
+        CoroutineState::Yielded(Ok(1)) => {}
+        _ => panic!("unexpected return from resume"),
+    }
+    match Pin::new(&mut coroutine).resume(()) {
+        CoroutineState::Complete("foo") => {}
+        _ => panic!("unexpected return from resume"),
+    }
+}