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

add regression test for #60218 #64706

Merged
merged 1 commit into from
Oct 4, 2019

Conversation

nikomatsakis
Copy link
Contributor

Fixes #60218

@rust-highfive
Copy link
Collaborator

r? @alexcrichton

(rust_highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Sep 23, 2019
@rust-highfive
Copy link
Collaborator

The job x86_64-gnu-llvm-6.0 of your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
2019-09-23T12:22:38.3127064Z ##[command]git remote add origin https://github.com/rust-lang/rust
2019-09-23T12:22:38.3317447Z ##[command]git config gc.auto 0
2019-09-23T12:22:38.3404717Z ##[command]git config --get-all http.https://github.com/rust-lang/rust.extraheader
2019-09-23T12:22:39.3312958Z ##[command]git config --get-all http.proxy
2019-09-23T12:22:39.3319935Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules --depth=2 origin +refs/heads/*:refs/remotes/origin/* +refs/pull/64706/merge:refs/remotes/pull/64706/merge
---
2019-09-23T13:34:36.5693210Z .................................................................................................... 1500/9039
2019-09-23T13:34:43.6692455Z .................................................................................................... 1600/9039
2019-09-23T13:34:57.6022903Z .........................................................................i...............i.......... 1700/9039
2019-09-23T13:35:05.6530062Z .................................................................................................... 1800/9039
2019-09-23T13:35:15.7553619Z ................................................................iiiii............................... 1900/9039
2019-09-23T13:35:38.4828485Z .................................................................................................... 2100/9039
2019-09-23T13:35:41.4634542Z .................................................................................................... 2200/9039
2019-09-23T13:35:45.2497914Z .................................................................................................... 2300/9039
2019-09-23T13:35:54.9007519Z .................................................................................................... 2400/9039
---
2019-09-23T13:39:18.1207745Z .................................................................................................... 4600/9039
2019-09-23T13:39:25.4452710Z .....................................................i...............i.............................. 4700/9039
2019-09-23T13:39:37.0260946Z .................................................................................................... 4800/9039
2019-09-23T13:39:46.7879684Z .................................................................................................... 4900/9039
2019-09-23T13:39:55.3112584Z .F.................................................................................................. 5000/9039
2019-09-23T13:40:06.3878172Z .........................................ii.ii...................................................... 5100/9039
2019-09-23T13:40:17.8546437Z .................................................................................................... 5300/9039
2019-09-23T13:40:29.8258961Z .................................................................................................... 5400/9039
2019-09-23T13:40:38.6373373Z ......i............................................................................................. 5500/9039
2019-09-23T13:40:44.9513100Z .................................................................................................... 5600/9039
2019-09-23T13:40:44.9513100Z .................................................................................................... 5600/9039
2019-09-23T13:40:58.5192847Z .................................................................................................... 5700/9039
2019-09-23T13:41:13.8959309Z .ii...i..ii...........i............................................................................. 5800/9039
2019-09-23T13:41:39.3016964Z .................................................................................................... 6000/9039
2019-09-23T13:41:50.1588512Z .................................................................................................... 6100/9039
2019-09-23T13:41:50.1588512Z .................................................................................................... 6100/9039
2019-09-23T13:42:10.0224722Z ...i..ii............................................................................................ 6200/9039
2019-09-23T13:42:33.0505953Z ...............................................................i.................................... 6400/9039
2019-09-23T13:42:35.8159245Z .................................................................................................... 6500/9039
2019-09-23T13:42:38.9807614Z ...................................i................................................................ 6600/9039
2019-09-23T13:42:43.9082431Z .................................................................................................... 6700/9039
---
2019-09-23T13:47:34.1245446Z 
2019-09-23T13:47:34.1245984Z ---- [ui] ui/issues/issue-60218.rs stdout ----
2019-09-23T13:47:34.1246043Z diff of stderr:
2019-09-23T13:47:34.1246075Z 
2019-09-23T13:47:34.1246449Z 1 error[E0277]: the trait bound `for<'t> <std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item: Foo` is not satisfied
2019-09-23T13:47:34.1246674Z 2   --> $DIR/issue-60218.rs:18:5
2019-09-23T13:47:34.1246744Z 3    |
2019-09-23T13:47:34.1246963Z - LL | / pub fn trigger_error<I, F>(iterable: I, functor: F)
2019-09-23T13:47:34.1247141Z - LL | | where
2019-09-23T13:47:34.1247341Z - LL | |     for<'t> &'t I: IntoIterator,
2019-09-23T13:47:34.1247605Z - LL | | for<'t> Map<<&'t I as IntoIterator>::IntoIter, F>: Iterator,
2019-09-23T13:47:34.1247851Z - LL | | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo,
2019-09-23T13:47:34.1248025Z - LL | | {
2019-09-23T13:47:34.1248777Z - LL | | }
2019-09-23T13:47:34.1248997Z -    | |_- required by `trigger_error`
2019-09-23T13:47:34.1249049Z + LL | pub fn trigger_error<I, F>(iterable: I, functor: F)
2019-09-23T13:47:34.1249320Z 12 ...
2019-09-23T13:47:34.1249320Z 12 ...
2019-09-23T13:47:34.1249542Z - LL |       trigger_error(vec![], |x: &u32| x)
2019-09-23T13:47:34.1250131Z -    |       ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item`
2019-09-23T13:47:34.1250474Z + LL | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo,
2019-09-23T13:47:34.1250781Z +    |                                                                        --- required by this bound in `trigger_error`
2019-09-23T13:47:34.1250884Z + ...
2019-09-23T13:47:34.1250931Z + LL |     trigger_error(vec![], |x: &u32| x)
2019-09-23T13:47:34.1251280Z +    |     ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item`
2019-09-23T13:47:34.1251405Z 16 error: aborting due to previous error
2019-09-23T13:47:34.1251468Z 17 
2019-09-23T13:47:34.1251499Z 
2019-09-23T13:47:34.1251524Z 
2019-09-23T13:47:34.1251524Z 
2019-09-23T13:47:34.1251571Z The actual stderr differed from the expected stderr.
2019-09-23T13:47:34.1251894Z Actual stderr saved to /checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/issues/issue-60218/issue-60218.stderr
2019-09-23T13:47:34.1252147Z To update references, rerun the tests and pass the `--bless` flag
2019-09-23T13:47:34.1252409Z To only update this specific test, also pass `--test-args issues/issue-60218.rs`
2019-09-23T13:47:34.1252517Z error: 1 errors occurred comparing output.
2019-09-23T13:47:34.1252563Z status: exit code: 1
2019-09-23T13:47:34.1252563Z status: exit code: 1
2019-09-23T13:47:34.1253314Z command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/ui/issues/issue-60218.rs" "-Zthreads=1" "--target=x86_64-unknown-linux-gnu" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/issues/issue-60218" "-Crpath" "-O" "-Cdebuginfo=0" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/issues/issue-60218/auxiliary" "-A" "unused"
2019-09-23T13:47:34.1253645Z ------------------------------------------
2019-09-23T13:47:34.1253679Z 
2019-09-23T13:47:34.1253894Z ------------------------------------------
2019-09-23T13:47:34.1253940Z stderr:
2019-09-23T13:47:34.1253940Z stderr:
2019-09-23T13:47:34.1254167Z ------------------------------------------
2019-09-23T13:47:34.1254638Z error[E0277]: the trait bound `for<'t> <std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item: Foo` is not satisfied
2019-09-23T13:47:34.1254884Z   --> /checkout/src/test/ui/issues/issue-60218.rs:18:5
2019-09-23T13:47:34.1254957Z    |
2019-09-23T13:47:34.1255003Z LL | pub fn trigger_error<I, F>(iterable: I, functor: F)
2019-09-23T13:47:34.1255268Z ...
2019-09-23T13:47:34.1255268Z ...
2019-09-23T13:47:34.1255672Z LL | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo,
2019-09-23T13:47:34.1255964Z    |                                                                        --- required by this bound in `trigger_error`
2019-09-23T13:47:34.1256032Z ...
2019-09-23T13:47:34.1256077Z LL |     trigger_error(vec![], |x: &u32| x) //~ ERROR E0277
2019-09-23T13:47:34.1256410Z    |     ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item`
2019-09-23T13:47:34.1256523Z error: aborting due to previous error
2019-09-23T13:47:34.1256553Z 
2019-09-23T13:47:34.1256795Z For more information about this error, try `rustc --explain E0277`.
2019-09-23T13:47:34.1256851Z 
---
2019-09-23T13:47:34.1285572Z thread 'main' panicked at 'Some tests failed', src/tools/compiletest/src/main.rs:536:22
2019-09-23T13:47:34.1285898Z note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
2019-09-23T13:47:34.1304903Z 
2019-09-23T13:47:34.1305147Z 
2019-09-23T13:47:34.1306953Z command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/compiletest" "--compile-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib" "--run-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib" "--rustc-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "--src-base" "/checkout/src/test/ui" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "ui" "--target" "x86_64-unknown-linux-gnu" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/usr/lib/llvm-6.0/bin/FileCheck" "--host-rustcflags" "-Crpath -O -Cdebuginfo=0 -Zunstable-options  -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--target-rustcflags" "-Crpath -O -Cdebuginfo=0 -Zunstable-options  -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--docck-python" "/usr/bin/python2.7" "--lldb-python" "/usr/bin/python2.7" "--gdb" "/usr/bin/gdb" "--quiet" "--llvm-version" "6.0.0\n" "--system-llvm" "--cc" "" "--cxx" "" "--cflags" "" "--llvm-components" "" "--llvm-cxxflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--color" "always"
2019-09-23T13:47:34.1307209Z 
2019-09-23T13:47:34.1307265Z 
2019-09-23T13:47:34.1316254Z failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test
2019-09-23T13:47:34.1316332Z Build completed unsuccessfully in 1:17:28
2019-09-23T13:47:34.1316332Z Build completed unsuccessfully in 1:17:28
2019-09-23T13:47:34.1377123Z == clock drift check ==
2019-09-23T13:47:34.1392902Z   local time: Mon Sep 23 13:47:34 UTC 2019
2019-09-23T13:47:34.2386054Z   network time: Mon, 23 Sep 2019 13:47:34 GMT
2019-09-23T13:47:34.2389520Z == end clock drift check ==
2019-09-23T13:47:35.0013619Z ##[error]Bash exited with code '1'.
2019-09-23T13:47:35.0056944Z ##[section]Starting: Checkout
2019-09-23T13:47:35.0059354Z ==============================================================================
2019-09-23T13:47:35.0059415Z Task         : Get sources
2019-09-23T13:47:35.0059466Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@Centril
Copy link
Contributor

Centril commented Sep 23, 2019

r? @Centril

Looks like this needs some --blessing. r=me when done.

@Centril Centril added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Sep 23, 2019
@Alexendoo
Copy link
Member

Ping from triage, any updates? @nikomatsakis

@rust-highfive
Copy link
Collaborator

The job x86_64-gnu-llvm-6.0 of your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem.

Click to expand the log.
2019-10-03T08:24:33.0473926Z ##[command]git remote add origin https://github.com/rust-lang/rust
2019-10-03T08:24:33.0666964Z ##[command]git config gc.auto 0
2019-10-03T08:24:33.0745944Z ##[command]git config --get-all http.https://github.com/rust-lang/rust.extraheader
2019-10-03T08:24:33.0808767Z ##[command]git config --get-all http.proxy
2019-10-03T08:24:33.0965125Z ##[command]git -c http.extraheader="AUTHORIZATION: basic ***" fetch --force --tags --prune --progress --no-recurse-submodules --depth=2 origin +refs/heads/*:refs/remotes/origin/* +refs/pull/64706/merge:refs/remotes/pull/64706/merge
---
2019-10-03T09:32:49.9934798Z .................................................................................................... 1500/9096
2019-10-03T09:32:57.6656923Z .................................................................................................... 1600/9096
2019-10-03T09:33:08.3906180Z .................................................................................................... 1700/9096
2019-10-03T09:33:18.4160597Z ...i...............i................................................................................ 1800/9096
2019-10-03T09:33:26.4830354Z ..............................................................................................iiiii. 1900/9096
2019-10-03T09:33:51.8483745Z .................................................................................................... 2100/9096
2019-10-03T09:33:54.6394843Z .................................................................................................... 2200/9096
2019-10-03T09:33:57.5658790Z .................................................................................................... 2300/9096
2019-10-03T09:34:04.8523449Z .................................................................................................... 2400/9096
---
2019-10-03T09:37:29.4431504Z .................................................................................i...............i.. 4700/9096
2019-10-03T09:37:38.7986925Z .................................................................................................... 4800/9096
2019-10-03T09:37:50.4910608Z .................................................................................................... 4900/9096
2019-10-03T09:37:57.1841372Z ..............................F..................................................................... 5000/9096
2019-10-03T09:38:10.4840531Z ..........................................................................ii.ii..................... 5100/9096
2019-10-03T09:38:21.9745211Z .................................................................................................... 5300/9096
2019-10-03T09:38:33.3701525Z .................................................................................................... 5400/9096
2019-10-03T09:38:41.4497155Z ........................................i........................................................... 5500/9096
2019-10-03T09:38:49.0891929Z .................................................................................................... 5600/9096
2019-10-03T09:38:49.0891929Z .................................................................................................... 5600/9096
2019-10-03T09:39:01.3028868Z .................................................................................................... 5700/9096
2019-10-03T09:39:14.3102350Z .....................................ii...i..ii...........i......................................... 5800/9096
2019-10-03T09:39:39.9315660Z .................................................................................................... 6000/9096
2019-10-03T09:39:50.6673270Z .................................................................................................... 6100/9096
2019-10-03T09:39:50.6673270Z .................................................................................................... 6100/9096
2019-10-03T09:40:08.9534691Z ..........................................i..ii..................................................... 6200/9096
2019-10-03T09:40:33.9548719Z .................................................................................................... 6400/9096
2019-10-03T09:40:36.4952911Z ..i................................................................................................. 6500/9096
2019-10-03T09:40:39.1619912Z ..........................................................................i......................... 6600/9096
2019-10-03T09:40:42.5624846Z .................................................................................................... 6700/9096
---
2019-10-03T09:45:23.9277775Z 
2019-10-03T09:45:23.9279298Z ---- [ui] ui/issues/issue-60218.rs stdout ----
2019-10-03T09:45:23.9279572Z diff of stderr:
2019-10-03T09:45:23.9279721Z 
2019-10-03T09:45:23.9280262Z 1 error[E0277]: the trait bound `for<'t> <std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item: Foo` is not satisfied
2019-10-03T09:45:23.9280734Z 2   --> $DIR/issue-60218.rs:18:5
2019-10-03T09:45:23.9280923Z 3    |
2019-10-03T09:45:23.9281913Z - LL | / pub fn trigger_error<I, F>(iterable: I, functor: F)
2019-10-03T09:45:23.9282291Z - LL | | where
2019-10-03T09:45:23.9282682Z - LL | |     for<'t> &'t I: IntoIterator,
2019-10-03T09:45:23.9283123Z - LL | | for<'t> Map<<&'t I as IntoIterator>::IntoIter, F>: Iterator,
2019-10-03T09:45:23.9283549Z - LL | | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo,
2019-10-03T09:45:23.9283928Z - LL | | {
2019-10-03T09:45:23.9284621Z - LL | | }
2019-10-03T09:45:23.9285373Z -    | |_- required by `trigger_error`
2019-10-03T09:45:23.9285604Z + LL | pub fn trigger_error<I, F>(iterable: I, functor: F)
2019-10-03T09:45:23.9286137Z 12 ...
2019-10-03T09:45:23.9286137Z 12 ...
2019-10-03T09:45:23.9286530Z - LL |       trigger_error(vec![], |x: &u32| x)
2019-10-03T09:45:23.9287055Z -    |       ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item`
2019-10-03T09:45:23.9287852Z + LL | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo,
2019-10-03T09:45:23.9288917Z +    |                                                                        --- required by this bound in `trigger_error`
2019-10-03T09:45:23.9289390Z + ...
2019-10-03T09:45:23.9289598Z + LL |     trigger_error(vec![], |x: &u32| x)
2019-10-03T09:45:23.9290112Z +    |     ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item`
2019-10-03T09:45:23.9290489Z 16 error: aborting due to previous error
2019-10-03T09:45:23.9290632Z 17 
2019-10-03T09:45:23.9290779Z 
2019-10-03T09:45:23.9290903Z 
2019-10-03T09:45:23.9290903Z 
2019-10-03T09:45:23.9291047Z The actual stderr differed from the expected stderr.
2019-10-03T09:45:23.9291973Z Actual stderr saved to /checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/issues/issue-60218/issue-60218.stderr
2019-10-03T09:45:23.9292557Z To update references, rerun the tests and pass the `--bless` flag
2019-10-03T09:45:23.9293126Z To only update this specific test, also pass `--test-args issues/issue-60218.rs`
2019-10-03T09:45:23.9294486Z error: 1 errors occurred comparing output.
2019-10-03T09:45:23.9294741Z status: exit code: 1
2019-10-03T09:45:23.9294741Z status: exit code: 1
2019-10-03T09:45:23.9295787Z command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/ui/issues/issue-60218.rs" "-Zthreads=1" "--target=x86_64-unknown-linux-gnu" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/issues/issue-60218" "-Crpath" "-O" "-Cdebuginfo=0" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/issues/issue-60218/auxiliary" "-A" "unused"
2019-10-03T09:45:23.9296973Z ------------------------------------------
2019-10-03T09:45:23.9297014Z 
2019-10-03T09:45:23.9297255Z ------------------------------------------
2019-10-03T09:45:23.9297304Z stderr:
2019-10-03T09:45:23.9297304Z stderr:
2019-10-03T09:45:23.9297519Z ------------------------------------------
2019-10-03T09:45:23.9297855Z error[E0277]: the trait bound `for<'t> <std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item: Foo` is not satisfied
2019-10-03T09:45:23.9298123Z   --> /checkout/src/test/ui/issues/issue-60218.rs:18:5
2019-10-03T09:45:23.9298175Z    |
2019-10-03T09:45:23.9298244Z LL | pub fn trigger_error<I, F>(iterable: I, functor: F)
2019-10-03T09:45:23.9298498Z ...
2019-10-03T09:45:23.9298498Z ...
2019-10-03T09:45:23.9298749Z LL | for<'t> <Map<<&'t I as IntoIterator>::IntoIter, F> as Iterator>::Item: Foo,
2019-10-03T09:45:23.9299065Z    |                                                                        --- required by this bound in `trigger_error`
2019-10-03T09:45:23.9299134Z ...
2019-10-03T09:45:23.9299183Z LL |     trigger_error(vec![], |x: &u32| x) //~ ERROR E0277
2019-10-03T09:45:23.9299542Z    |     ^^^^^^^^^^^^^ the trait `for<'t> Foo` is not implemented for `<std::iter::Map<<&'t _ as std::iter::IntoIterator>::IntoIter, _> as std::iter::Iterator>::Item`
2019-10-03T09:45:23.9299634Z error: aborting due to previous error
2019-10-03T09:45:23.9299690Z 
2019-10-03T09:45:23.9299934Z For more information about this error, try `rustc --explain E0277`.
2019-10-03T09:45:23.9299971Z 
---
2019-10-03T09:45:23.9337063Z thread 'main' panicked at 'Some tests failed', src/tools/compiletest/src/main.rs:537:22
2019-10-03T09:45:23.9337151Z note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace.
2019-10-03T09:45:24.5393241Z 
2019-10-03T09:45:24.5393360Z 
2019-10-03T09:45:24.5396114Z command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/compiletest" "--compile-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib" "--run-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib" "--rustc-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "--src-base" "/checkout/src/test/ui" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "ui" "--target" "x86_64-unknown-linux-gnu" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/usr/lib/llvm-6.0/bin/FileCheck" "--host-rustcflags" "-Crpath -O -Cdebuginfo=0 -Zunstable-options  -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--target-rustcflags" "-Crpath -O -Cdebuginfo=0 -Zunstable-options  -Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--docck-python" "/usr/bin/python2.7" "--lldb-python" "/usr/bin/python2.7" "--gdb" "/usr/bin/gdb" "--quiet" "--llvm-version" "6.0.0\n" "--system-llvm" "--cc" "" "--cxx" "" "--cflags" "" "--llvm-components" "" "--llvm-cxxflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--color" "always"
2019-10-03T09:45:24.5396416Z 
2019-10-03T09:45:24.5396448Z 
2019-10-03T09:45:24.5396498Z failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test
2019-10-03T09:45:24.5396570Z Build completed unsuccessfully in 1:13:17
2019-10-03T09:45:24.5396570Z Build completed unsuccessfully in 1:13:17
2019-10-03T09:45:24.5396620Z == clock drift check ==
2019-10-03T09:45:24.5396669Z   local time: Thu Oct  3 09:45:23 UTC 2019
2019-10-03T09:45:24.5396745Z   network time: Thu, 03 Oct 2019 09:45:24 GMT
2019-10-03T09:45:24.5396802Z == end clock drift check ==
2019-10-03T09:45:25.0726506Z ##[error]Bash exited with code '1'.
2019-10-03T09:45:25.0769950Z ##[section]Starting: Checkout
2019-10-03T09:45:25.0772176Z ==============================================================================
2019-10-03T09:45:25.0772255Z Task         : Get sources
2019-10-03T09:45:25.0772305Z Description  : Get sources from a repository. Supports Git, TfsVC, and SVN repositories.

I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact @TimNN. (Feature Requests)

@nikomatsakis
Copy link
Contributor Author

@bors r=centril

@bors
Copy link
Contributor

bors commented Oct 3, 2019

📌 Commit 4396a1c has been approved by centril

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Oct 3, 2019
Centril added a commit to Centril/rust that referenced this pull request Oct 3, 2019
Centril added a commit to Centril/rust that referenced this pull request Oct 3, 2019
tmandry added a commit to tmandry/rust that referenced this pull request Oct 3, 2019
tmandry added a commit to tmandry/rust that referenced this pull request Oct 3, 2019
bors added a commit that referenced this pull request Oct 3, 2019
Rollup of 11 pull requests

Successful merges:

 - #61879 (Stabilize todo macro)
 - #64675 (Deprecate `#![plugin]` & `#[plugin_registrar]`)
 - #64690 (proc_macro API: Expose `macro_rules` hygiene)
 - #64706 (add regression test for #60218)
 - #64741 (Prevent rustdoc feature doctests)
 - #64842 (Disallow Self in type param defaults of ADTs)
 - #65004 (Replace mentions of IRC with Discord)
 - #65018 (Set RUST_BACKTRACE=0 in tests that include a backtrace in stderr)
 - #65055 (Add long error explanation for E0556)
 - #65056 (Make visit projection iterative)
 - #65057 (typo: fix typo in E0392)

Failed merges:

r? @ghost
@bors bors merged commit 4396a1c into rust-lang:master Oct 4, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ICE on higher-trait bounds
6 participants