Skip to content

Rollup of 7 pull requests #62226

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

Merged
merged 32 commits into from
Jun 29, 2019
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6cc42ce
Revert "Set test flag when rustdoc is running with --test option"
ollie27 May 25, 2019
6c747e0
Fix tests after revert of rustdoc cfg(test) feature
ollie27 May 25, 2019
c77024c
Fix more tests after revert of rustdoc cfg(test) feature
ollie27 Jun 9, 2019
a8b2b1c
publish_toolstate: don't use 'new' from inside the loop
RalfJung Jun 21, 2019
fb2f841
give a bit more context in the error message
RalfJung Jun 21, 2019
e02c655
dump the JSON we are going to submit to GH to create the issue
RalfJung Jun 21, 2019
8ceab32
fix long line
RalfJung Jun 21, 2019
e10012d
show HTTP error body
RalfJung Jun 21, 2019
ecca52c
don't make PR author assignee; that break creating the issue when the…
RalfJung Jun 21, 2019
02863a3
do as tidy says
RalfJung Jun 21, 2019
a56a6d7
bootstrap: pass '--pass' on to compiletest.
Centril Jun 11, 2019
54337fa
compiletest: support '--pass check' and '// ignore-pass'.
Centril Jun 12, 2019
e364eb4
add '// ignore-pass' where applicable.
Centril Jun 12, 2019
e4e0f95
promoted_errors: warn -> deny.
Centril Jun 12, 2019
5baac07
lint-type-overflow2: warn -> deny.
Centril Jun 12, 2019
5eaedda
Address review comments.
Centril Jun 24, 2019
a60bbb0
--bless you.
Centril Jun 24, 2019
c877989
Add some #[inline] attributes
Zoxc Jun 25, 2019
11221d1
Inform the query system about properties of queries at compile time
Zoxc Jun 24, 2019
93077f3
Hash force_pass_mode when config.mode == Pretty.
Centril Jun 26, 2019
3ba1f39
Avoid mem::uninitialized() in std::sys::unix
cuviper Jun 26, 2019
b533aff
Use pointer::write_bytes for android sigemptyset
cuviper Jun 26, 2019
643ae63
doc(libcore) Fix CS
Hywan Jun 28, 2019
65021ec
Add regression test for #60709
tmandry Jun 13, 2019
b7397cc
Move async-fn-size test to async-await/
tmandry Jun 14, 2019
6c0ab73
Rollup merge of #61199 - ollie27:rustdoc_cfg_test, r=QuietMisdreavus
Centril Jun 29, 2019
0721364
Rollup merge of #61755 - Centril:compiletest-force-check, r=petrochenkov
Centril Jun 29, 2019
2238a94
Rollup merge of #61818 - tmandry:issue-60709-test, r=cramertj
Centril Jun 29, 2019
a4cf85e
Rollup merge of #62023 - RalfJung:miri-toolstate, r=kennytm
Centril Jun 29, 2019
94a066e
Rollup merge of #62104 - Zoxc:query-info, r=eddyb
Centril Jun 29, 2019
75edfe2
Rollup merge of #62163 - cuviper:unix-uninit, r=RalfJung
Centril Jun 29, 2019
38801ce
Rollup merge of #62204 - Hywan:patch-2, r=rkruppe
Centril Jun 29, 2019
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
Prev Previous commit
Next Next commit
Move async-fn-size test to async-await/
  • Loading branch information
tmandry committed Jun 28, 2019
commit b7397cc00b052cf49c26b095c72b895cd0a3e254
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// edition:2018
// aux-build:arc_wake.rs

#![feature(async_await, await_macro)]

extern crate arc_wake;
#[path = "../auxiliary/arc_wake.rs"]
mod arc_wake;

use std::pin::Pin;
use std::future::Future;
Expand Down