Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move async-await tests from run-pass to ui #62270

Merged
merged 5 commits into from
Jul 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 0 additions & 64 deletions src/test/run-pass/auxiliary/arc_wake.rs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
//
// See issue #59123 for a full explanation.

// ignore-wasm32-bare (sizes don't match)
// run-pass
agnxy marked this conversation as resolved.
Show resolved Hide resolved

// edition:2018

#![feature(async_await)]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
// run-pass
// aux-build:arc_wake.rs
// edition:2018

#![feature(async_await)]

#[path = "../auxiliary/arc_wake.rs"]
mod arc_wake;
extern crate arc_wake;
Centril marked this conversation as resolved.
Show resolved Hide resolved

use std::pin::Pin;
use std::future::Future;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// run-pass

// aux-build:arc_wake.rs

extern crate arc_wake;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
// handled incorrectly in generators.
// compile-flags: -Copt-level=z -Cdebuginfo=2 --edition=2018

// run-pass

#![feature(async_await)]
#![allow(unused)]

Expand Down