Skip to content

Commit

Permalink
Rollup merge of rust-lang#62270 - agnxy:move-async-test, r=Centril,tm…
Browse files Browse the repository at this point in the history
…andry

Move async-await tests from run-pass to ui

fix rust-lang#62236

r? @Centril
  • Loading branch information
Centril committed Jul 11, 2019
2 parents 618fc02 + 128143c commit 8fe7ed0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 66 deletions.
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

// 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;

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

0 comments on commit 8fe7ed0

Please sign in to comment.