Skip to content

Commit

Permalink
Add generator, async tests with uninhabited saved local
Browse files Browse the repository at this point in the history
  • Loading branch information
tmandry committed Aug 7, 2019
1 parent 5bbf673 commit f544721
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
36 changes: 36 additions & 0 deletions tests/run-pass/async-fn.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,32 @@ pub async fn foo(x: &u32, y: u32) -> u32 {
*x + y + *a
}

async fn add(x: u32, y: u32) -> u32 {
async { x + y }.await
}

async fn build_aggregate(a: u32, b: u32, c: u32, d: u32) -> u32 {
let x = (add(a, b).await, add(c, d).await);
x.0 + x.1
}

enum Never {}
fn never() -> Never {
panic!()
}

async fn includes_never(crash: bool, x: u32) -> u32 {
let mut result = async { x * x }.await;
if !crash {
return result;
}
#[allow(unused)]
let bad = never();
result *= async { x + x }.await;
drop(bad);
result
}

fn raw_waker_clone(_this: *const ()) -> RawWaker {
panic!("unimplemented");
}
Expand All @@ -38,4 +64,14 @@ fn main() {
let waker = unsafe { Waker::from_raw(RawWaker::new(ptr::null(), &RAW_WAKER)) };
let mut context = Context::from_waker(&waker);
assert_eq!(unsafe { Pin::new_unchecked(&mut fut) }.poll(&mut context), Poll::Ready(31));

let mut fut = build_aggregate(1, 2, 3, 4);
let waker = unsafe { Waker::from_raw(RawWaker::new(ptr::null(), &RAW_WAKER)) };
let mut context = Context::from_waker(&waker);
assert_eq!(unsafe { Pin::new_unchecked(&mut fut) }.poll(&mut context), Poll::Ready(10));

let mut fut = includes_never(false, 4);
let waker = unsafe { Waker::from_raw(RawWaker::new(ptr::null(), &RAW_WAKER)) };
let mut context = Context::from_waker(&waker);
assert_eq!(unsafe { Pin::new_unchecked(&mut fut) }.poll(&mut context), Poll::Ready(16));
}
13 changes: 13 additions & 0 deletions tests/run-pass/generator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ fn finish<T>(mut amt: usize, mut t: T) -> T::Return
}
}
}
}

enum Never {}
fn never() -> Never {
panic!()
}

fn main() {
Expand Down Expand Up @@ -67,4 +71,13 @@ fn main() {
}),
10
);
let b = true;
finish(1, || {
yield 1;
if b { return; }
#[allow(unused)]
let x = never();
yield 2;
drop(x);
});
}

0 comments on commit f544721

Please sign in to comment.