Skip to content

Commit

Permalink
Rollup merge of rust-lang#62270 - agnxy:move-async-test, r=Centril
Browse files Browse the repository at this point in the history
Move async-await tests from run-pass to ui

fix rust-lang#62236

r? @Centril
  • Loading branch information
Centril committed Jul 6, 2019
2 parents d42e1a9 + f115147 commit fe3855c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 66 deletions.
64 changes: 0 additions & 64 deletions src/test/run-pass/auxiliary/arc_wake.rs

This file was deleted.

Expand Up @@ -7,6 +7,8 @@
//
// See issue #59123 for a full explanation.

// run-pass

// edition:2018

#![feature(async_await)]
Expand Down
@@ -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;

use std::pin::Pin;
use std::future::Future;
Expand Down
@@ -1,3 +1,5 @@
// run-pass

// aux-build:arc_wake.rs

extern crate arc_wake;
Expand Down
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

0 comments on commit fe3855c

Please sign in to comment.