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

Make OnDiskCache thread-safer #49396

Merged
merged 1 commit into from
Apr 14, 2018
Merged

Conversation

Zoxc
Copy link
Contributor

@Zoxc Zoxc commented Mar 26, 2018

I'm not sure if synthetic_expansion_infos is handled correctly.

interpret_alloc_cache and interpret_alloc_size seems to be wrong though, since the code may now decode two AllocIds in parallel. I'd like some input on how to fix that.

cc @oli-obk

r? @michaelwoerister

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Mar 26, 2018
@@ -604,6 +610,7 @@ impl<'a, 'tcx, 'x> SpecializedDecoder<interpret::AllocId> for CacheDecoder<'a, '
this.with_position(shorthand, |this| interpret::AllocId::decode(this))
}
)?;
// FIXME: Looks like overwrites aren't allowed here
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could asseet that the result is the same. That would be fine I guess.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That won't work for the alloc cache though. This code was not written with threading in mind. I think it could work if you made the creation of the alloc_id atomic with the insertion into the cache. But then you'd be back at troubles with the end position. So if there's an entry in the alloc_cache but not the end position, you need to decode the allocation, but throw away the result in order to make the deserializer move forward.

Uuuuh. It's a little messy but should be doable. You wanna do a live hacking together to hash out the details or is the above info enoughfor you?

@Zoxc Zoxc changed the title [WIP] Make OnDiskCache thread-safe Make OnDiskCache thread-safer Apr 1, 2018
@Zoxc
Copy link
Contributor Author

Zoxc commented Apr 1, 2018

I removed the Miri parts of this PR. The on disk cache for alloc IDs doesn't seem to actually work on master and Miri requires some changes to make it thread-safe also, so it can be part of another PR.

@Zoxc Zoxc force-pushed the sync-on-disk-cache branch 2 times, most recently from b94e5af to 174521f Compare April 1, 2018 05:56
@TimNN
Copy link
Contributor

TimNN commented Apr 1, 2018

Your PR failed on Travis. 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.
Resolving deltas: 100% (612357/612357), completed with 4841 local objects.
---
[00:00:54] configure: rust.quiet-tests     := True
---
[00:06:59] error[E0433]: failed to resolve. Use of undeclared type or module `Lock`
[00:06:59]     --> librustc/ty/context.rs:1275:21
[00:06:59]      |
[00:06:59] 1275 |             rcache: Lock::new(FxHashMap()),
[00:06:59]      |                     ^^^^ Use of undeclared type or module `Lock`
[00:06:59]
[00:06:59] error[E0412]: cannot find type `Lock` in this scope
[00:06:59]    --> librustc/ty/context.rs:869:17
[00:06:59]     |
[00:06:59] 869 |     pub rcache: Lock<FxHashMap<ty::CReaderCacheKey, Ty<'tcx>>>,
[00:06:59]     |                 ^^^^ not found in this scope
[00:06:59] help: possible candidates are found in other modules, you can import them into scope
---
unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-e01ce88b04783514.rlib --extern lazy_static=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblazy_static-3c1d922a28d91411.rlib --extern rustc_const_math=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_const_math-9784fba5d291c443.so --extern flate2=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libflate2-0249ed74490015f9.rlib --extern serialize=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libserialize-f27fded04dd31022.so --extern serialize=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libserialize-f27fded04dd31022.rlib --extern tempdir=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libtempdir-728fcbc86125f341.rlib --extern syntax=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libsyntax-7437cee1018df6d3.so --extern proc_macro=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libproc_macro-082920b5139c5cd6.so --extern jobserver=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libjobserver-3c385cb05f9c08fa.rlib --extern arena=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libarena-2e4ce590106ede04.so --extern byteorder=/checkout/obj/build/x86_64-unknown-linux-gnu/:26] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap build
[00:07:26] Build completed unsuccessfully in 0:03:03
[00:07:26] make: *** [all] Error 1
[00:07:26] Makefile:28: recipe for target 'all' failed

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.

@Zoxc Zoxc force-pushed the sync-on-disk-cache branch 3 times, most recently from 6daf665 to e1498b3 Compare April 1, 2018 10:19
@TimNN
Copy link
Contributor

TimNN commented Apr 1, 2018

Your PR failed on Travis. 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.
[00:00:48] configure: rust.quiet-tests     := True
---
[00:41:01] .........................................................................i..........................
[00:41:07] ................i...................................................................................
---
[00:41:42] ............................................................................................i.......
[00:41:49] ................................................................i...................................
---
[00:42:44] .............................................i......................................................
---
[00:46:40] .............................i......................................................................
[00:46:55] ..............................................................i.....................................
[00:47:11] ...............................................i....................................................
[00:47:31] ....................................................................................................
[00:47:53] ....................................................................................................
[00:48:15] ....................................................................................................
[00:48:40] .i................................................................................................i.
[00:49:07] .................................................................................test [run-pass] run-pass/mir_heavy_promoted.rs has been running for over 60 seconds
[00:49:17] ...................
[00:49:48] ....................................................................................................
[00:50:24] ...............................................................ii...................................
[00:51:09] ..........................i....................................................i.ii....test [run-pass] run-pass/saturating-float-casts.rs has been running for over 60 seconds
[00:51:14] .............
[00:51:54] .......................................................................................iiiiiii......
---
[00:53:53] ....................................i...............................................................
[00:54:01] ....................................................................................................
[00:54:08] ..................i............................................................ii.iii...............
[00:54:16] ....................................................................................................
[00:54:24] ........i..............................i............................................................
[00:54:31] ....................................................................................................
[00:54:38] .....................i..............................................................................
[00:54:46] ....................................................................................................
[00:54:56] ....................................................................................................
[00:55:07] ....................................................................................................
[00:55:18] ....................................................................................................
[00:55:32] ....................................................................................................
[00:55:40] ..............i.....................................................................................
[00:55:50] .................i..ii..............................................................................
[00:56:00] ....................................................................................................
[00:56:11] ....................................................................................................
[00:56:20] ....................................................................................i...............
[00:56:31] ..............................i.....................................................................
---
[00:57:09] ...........................i........................................................................
[00:57:10] ....................................................................i...............................
[00:57:12] ................i.......................................................
---
[00:57:26] ...........i........................
---
[00:57:56] i...i..ii....i.............ii........iii......i..i...i...ii..i..i..ii.....
---
[00:57:59] i.......i......................i......
---
" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_add_field/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_add_field/struct_point.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_add_field/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_add_field/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] ---- [incremental] incremental/callee_caller_cross_crate/b.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/callee_caller_cross_crate/auxiliary/a.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/callee_caller_cross_crate/auxiliary/a.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/callee_caller_cross_crate/b.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/callee_caller_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/callee_caller_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux"
[00:58:14] stdout:
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] ---------------------------------------inux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/add_private_fn_at_krate_root_cc/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/add_private_fn_at_krate_root_cc/struct_point.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/add_private_fn_at_krate_root_cc/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/add_private_fn_at_krate_root_cc/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_crate_dep_kind.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_crate_dep_kind.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_crate_dep_kind.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_crate_dep_kind.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Cpanic=unwind" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_crate_dep_kind.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath -C panic=unwind
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_crate_dep_kind.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_private_fn/struct_point.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_private_fn/struct_point.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_fn/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_fn/struct_point.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_fn/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_private_fn/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_private_impl_method/struct_point.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_private_impl_method/struct_point.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_impl_method/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_impl_method/struct_point.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_impl_method/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_private_impl_method/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_crate_order/main.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/change_crate_order/auxiliary/a.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_crate_order/auxiliary/a.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_crate_order/main.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_crate_order/main.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_crate_order/main.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_crate_order/main.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_private_fn_cc/struct_point.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: auxiliary build of "/checkout/src/test/incremental/change_private_fn_cc/auxiliary/point.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_private_fn_cc/auxiliary/point.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_fn_cc/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_fn_cc/struct_point.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_fn_cc/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_private_fn_cc/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_pub_inherent_method_body/struct_point.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_pub_inherent_method_body/struct_point.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_pub_inherent_method_body/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_pub_inherent_method_body/struct_point.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_pub_inherent_method_body/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_pub_inherent_method_body/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_private_impl_method_cc/struct_point.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: auxiliary build of "/checkout/src/test/incremental/change_private_impl_method_cc/auxiliary/point.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_private_impl_method_cc/auxiliary/point.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_impl_method_cc/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_impl_method_cc/struct_point.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_private_impl_method_cc/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_private_impl_method_cc/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_pub_inherent_method_sig/struct_point.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_pub_inherent_method_sig/struct_point.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_pub_inherent_method_sig/struct_point.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_pub_inherent_method_sig/struct_point.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_pub_inherent_method_sig/struct_point.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_pub_inherent_method_sig/struct_point.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/change_symbol_export_status.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/change_symbol_export_status.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_symbol_export_status.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_symbol_export_status.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Zquery-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/change_symbol_export_status.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/change_symbol_export_status.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/crate_hash_reorder.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/crate_hash_reorder.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/crate_hash_reorder.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/crate_hash_reorder.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/crate_hash_reorder.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/crate_hash_reorder.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/dirty_clean.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: compiler encountered internal error
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/dirty_clean.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/dirty_clean.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/dirty_clean.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/dirty_clean.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/dirty_clean.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/extern_static/issue-49153.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/extern_static/issue-49153.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/extern_static/issue-49153.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/extern_static/issue-49153.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-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/incremental/extern_static/issue-49153.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/extern_static/issue-49153.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/commandline-args.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass3`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/commandline-args.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass3" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/commandline-args.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/commandline-args.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-C" "debuginfo=2" "--verbose" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/commandline-args.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath -C debuginfo=2
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/commandline-args.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/call_expressions.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stageflags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/call_expressions.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/closure_expressions.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/closure_expressions.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/closure_expressions.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/closure_expressions.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/closure_expressions.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/closure_expressions.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/feature_gate.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: compiler encountered internal error
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/feature_gate.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/feature_gate.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/feature_gate.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/feature_gate.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
---
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/consts.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/consts.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/consts.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/consts.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/consts.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/enum_constructors.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/enum_constructors.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/enum_constructors.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/enum_constructors.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/enum_constructors.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/enum_constructors.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/extern_mods.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfaimd#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/extern_mods.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/exported_vs_not.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/exported_vs_not.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/exported_vs_not.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/exported_vs_not.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/exported_vs_not.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/exported_vs_not.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/enum_defs.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/enum_defs.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/enum_defs.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/enum_defs.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/enum_defs.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z que "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/indexing_expressions.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/indexing_expressions.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/indexing_expressions.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/function_interfaces.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/function_interfaces.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/function_interfaces.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/function_interfaces.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/function_interfaces.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/function_interfaces.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/for_loops.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/for_loops.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/for_loops.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/for_loops.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/for_loops.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/for_loops.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/inline_asm.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/inline_asm.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/inline_asm.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/inline_asm.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/inline_asm.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/inline_asm.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/let_expressions.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/let_expressions.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/let_expressions.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/let_expressions.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/let_expressions.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/let_expressions.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/loop_expressions.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/loop_expressions.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/inherent_impls.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/inherent_impls.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/inherent_impls.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/inherent_impls.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/inherent_impls.stage2-x86_64-unknown-linux-gnu.aux"
[00:58:14] stdout:
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] ---------6_64-unknown-linux-gnu/test/incremental/hashes/match_expressions.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/match_expressions.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/match_expressions.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/match_expressions.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/statics.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/statics.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/statics.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/statics.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/statics.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/statics.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/struct_constructors.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/struct_constructors.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/struct_constructors.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/struct_constructors.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/struct_constructors.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/struct_constructors.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/panic_exprs.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/panic_exprs.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/panic_exprs.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/panic_exprs.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-C" "debug-assertions" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/panic_exprs.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath -C debug-assertions
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/panic_exprs.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/struct_defs.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/struct_defs.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/struct_defs.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/struct_defs.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/struct_defs.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/struct_defs.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/type_defs.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/type_defs.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/type_defs.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/type_defs.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/type_defs.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/type_defs.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/trait_impls.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/trait_impls.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/trait_impls.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/trait_impls.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/trait_impls.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/trait_impls.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/trait_defs.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/trait_defs.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/traitremental] incremental/hashes/trait_defs.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/while_let_loops.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/while_let_loops.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/while_let_loops.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/while_let_loops.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/while_let_loops.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/while_let_loops.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/while_loops.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/while_loops.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/while_loops.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/while_loops.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/while_loops.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/while_loops.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hashes/unary_and_binary_exprs.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hashes/unary_and_binary_exprs.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/unary_and_binary_exprs.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/unary_and_binary_exprs.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-Zincremental-ignore-spans" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hashes/unary_and_binary_exprs.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -Z incremental-ignore-spans -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hashes/unary_and_binary_exprs.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/hello_world.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/hello_world.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hello_world.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hello_world.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/hello_world.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/hello_world.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/ich_nested_items.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/ich_nested_items.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--ta
[00:58:14]
[00:58:14] thread '[incremental] incremental/ich_nested_items.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/ich_method_call_trait_scope.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/ich_method_call_trait_scope.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/ich_method_call_trait_scope.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/ich_method_call_trait_scope.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/ich_method_call_trait_scope.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
---
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/ich_resolve_results.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/ich_resolve_results.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/ich_resolve_results.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-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/incremental/ich_resolve_results.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/ich_resolve_results.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/inlined_hir_34991/main.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unkned: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/issue-35593.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/issue-38222.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/issue-38222.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-38222.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-38222.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-C" "debuginfo=1" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-38222.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath -C debuginfo=1
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/issue-38222.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/issue-39569.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/issue-39569.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-39569.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-39569.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-39569.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/issue-39569.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/issue-42602.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/issue-42602.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-42602.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-42602.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Zquery-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-42602.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/issue-42602.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/issue-39828/issue-39828.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/issue-39828/auxiliary/generic.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/issue-39828/auxiliary/generic.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-39828/issue-39828.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-39828/issue-39828.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/issue-39828/issue-39828.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/issue-39828/issue-39828.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/krate-inherent.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/krate-inherent.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate-inherent.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate-inherent.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate-inherent.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/krate-inherent.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/macro_export.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/macro_export.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/macro_export.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/macro_export.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkoental/krate-inlined.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate-inlined.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate-inlined.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate-inlined.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/krate-inlined.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/krate_reassign_34991/main.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/krate_reassign_34991/auxiliary/a.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/krate_reassign_34991/auxiliary/a.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate_reassign_34991/main.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate_reassign_34991/main.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/krate_reassign_34991/main.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/krate_reassign_34991/main.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/remapped_paths_cc/main.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/remapped_paths_cc/auxiliary/extern_crate.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/remapped_paths_cc/auxiliary/extern_crate.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remapped_paths_cc/main.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remapped_paths_cc/main.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-g" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remapped_paths_cc/main.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/remapped_paths_cc/main.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/remove_source_file/main.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/remove_source_file/main.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remove_source_file/main.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remove_source_file/main.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-g" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remove_source_file/main.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` f"-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remove-private-item-cross-crate/main.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/remove-private-item-cross-crate/main.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/remove-private-item-cross-crate/main.rs' panicked at 'explicit panic', tools/compiletest/src/ted panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/remove_crate/main.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/source_loc_macros.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/source_loc_macros.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/source_loc_macros.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/source_loc_macros.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/source_loc_macros.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/source_loc_macros.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/rlib_cross_crate/b.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/rlib_cross_crate/auxiliary/a.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/rlib_cross_crate/auxiliary/a.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/rlib_cross_crate/b.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/rlib_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/rlib_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/rlib_cross_crate/b.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/span_hash_stable/main.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/span_hash_stable/main.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/span_hash_stable/main.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/span_hash_stable/main.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-g" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/span_hash_stable/main.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/span_hash_stable/main.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/spans_in_type_debuginfo.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/spans_in_type_debuginfo.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_in_type_debuginfo.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_in_type_debuginfo.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-g" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_in_type_debuginfo.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/spans_in_type_debuginfo.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/spans_significant_w_debuginfo.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/spans_significant_w_debuginfo.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_significant_w_debuginfo.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_significant_w_debuginfo.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-g" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_significant_w_debuginfo.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/spans_significant_w_debuginfo.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/spans_significant_w_panic.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/spans_significant_w_panic.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_significant_w_panic.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_significant_w_panic.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-C" "overflow-checks=on" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spans_significant_w_panic.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath -C overflow-checks=on
---
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/spike.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spike.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spike.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/spike.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C pread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/static_refering_to_other_static/issue-49081.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/static_refering_to_other_static2/issue.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/static_refering_to_other_static2/issue.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/static_refering_to_other_static2/issue.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/static_refering_to_other_static2/issue.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-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/incremental/static_refering_to_other_static2/issue.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath
---
[00:58:14] error in revision `cfail2`: test compilation failed although it shouldn't!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/string_constant.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/string_constant.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/string_constant.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/string_constant.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/string_constant.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/static_stable_hash/issue-49301.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/static_stable_hash/issue-49301.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/static_stable_hash/issue-49301.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/static_stable_hash/issue-49301.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-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/incremental/static_stable_hash/issue-49301.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/static_stable_hash/issue-49301.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/struct_add_field.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/struct_add_field.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_add_field.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_add_field.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_add_field.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/struct_add_field.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/struct_change_field_name.rs stdout ----
[00:58:14]
[00:58:14] error in revision `cfail2`: compiler encountered internal error
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/struct_change_field_name.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "cfail2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_name.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_name.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_name.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
---
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/struct_change_field_type.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_type.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incrementa] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/struct_change_nothing.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_nothing.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_nothing.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_nothing.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/struct_change_nothing.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/struct_remove_field.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: compilation failed!
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/struct_remove_field.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_remove_field.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_remove_field.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_remove_field.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/struct_remove_field.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/struct_change_field_type_cross_crate/b.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/struct_change_field_type_cross_crate/auxiliary/a.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/struct_change_field_type_cross_crate/auxiliary/a.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_type_cross_crate/b.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_type_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/struct_change_field_type_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath --crate-type dylib
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/struct_change_field_type_cross_crate/b.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14] ---- [incremental] incremental/type_alias_cross_crate/b.rs stdout ----
[00:58:14]
[00:58:14] error in revision `rpass2`: auxiliary build of "/checkout/src/test/incremental/type_alias_cross_crate/auxiliary/a.rs" failed to compile:
[00:58:14] status: exit code: 101
[00:58:14] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/incremental/type_alias_cross_crate/auxiliary/a.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--target=x86_64-unknown-linux-gnu" "--cfg" "rpass2" "-C" "incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/type_alias_cross_crate/b.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/type_alias_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "--crate-type" "dylib" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/type_alias_cross_crate/b.stage2-x86_64-unknown-linux-gnu.aux"
[00:58:14] stdout:
[00:58:14] ----------------------------------------t/obj/build/x86_64-unknown-linux-gnu/test/incremental/unchecked_dirty_clean.inc" "-Z" "incremental-verify-ich" "-Z" "incremental-queries" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/unchecked_dirty_clean.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zmiri" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-Z" "query-dep-graph" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental/unchecked_dirty_clean.stage2-x86_64-unknown-linux-gnu.aux"
---
[00:58:14] thread 'rustc' panicked at 'already borrowed: BorrowMutError', libcore/result.rs:945:5
[00:58:14] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:58:14]
[00:58:14] error: internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -Z query-dep-graph -C incremental -C prefer-dynamic -C rpath
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[0 internal compiler error: unexpected panic
[00:58:14]
[00:58:14] note: the compiler unexpectedly panicked. this is a bug.
[00:58:14]
[00:58:14] note: we would appreciate a bug report: https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md#bug-reports
[00:58:14]
[00:58:14] note: rustc 1.26.0-dev running on x86_64-unknown-linux-gnu
[00:58:14]
[00:58:14] note: compiler flags: -Z incremental-verify-ich -Z incremental-queries -Z ui-testing -Z miri -Z unstable-options -C incremental -C prefer-dynamic -C rpath -C overflow-checks=on
[00:58:14]
[00:58:14]
[00:58:14] ------------------------------------------
[00:58:14]
[00:58:14] thread '[incremental] incremental/warnings-reemitted.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2901:9
[00:58:14]
[00:58:14]
[00:58:14] failures:
[00:58:14]     [incremental] incremental/add_private_fn_at_krate_root_cc/struct_point.rs
[00:58:14]     [incremental] incremental/callee_caller_cross_crate/b.rs
[00:58:14]     [incremental] incremental/change_add_field/struct_point.rs
[00:58:14]     [incremental] incremental/change_crate_dep_kind.rs
[00:58:14]     [incremental] incremental/change_crate_order/main.rs
[00:58:14]     [incremental] incremental/change_private_fn/struct_point.rs
[00:58:14]     [incremental] incremental/change_private_fn_cc/struct_point.rs
[00:58:14]     [incremental] incremental/change_private_impl_method/struct_point.rs
[00:58:14]     [incremental] incremental/change_private_impl_method_cc/struct_point.rs
[00:58:14]     [incremental] incremental/change_pub_inherent_method_body/struct_point.rs
[00:58:14]     [incremental] incremental/change_pub_inherent_method_sig/struct_point.rs
[00:58:14]     [incremental] incremental/change_symbol_export_status.rs
[00:58:14]     [incremental] incremental/commandline-args.rs
[00:58:14]     [incremental] incremental/crate_hash_reorder.rs
[00:58:14]     [incremental] incremental/dirty_clean.rs
[00:58:14]     [incremental] incremental/extern_static/issue-49153.rs
[00:58:14]     [incremental] incremental/feature_gate.rs
[00:58:14]     [incremental] incremental/hashes/call_expressions.rs
[00:58:14]     [incremental] incremental/hashes/closure_expressions.rs
[00:58:14]     [incremental] incremental/hashes/consts.rs
[00:58:14]     [incremental] incremental/hashes/enum_constructors.rs
[00:58:14]     [incremental] incremental/hashes/enum_defs.rs
[00:58:14]     [incremental] incremental/hashes/exported_vs_not.rs
[00:58:14]     [incremental] incremental/hashes/extern_mods.rs
[00:58:14]     [incremental] incremental/hashes/for_loops.rs
[00:58:14]     [incremental] incremental/hashes/function_interfaces.rs
[00:58:14]     [incremental] incremental/hashes/if_expressions.rs
[00:58:14]     [incremental] incremental/hashes/indexing_expressions.rs
[00:58:14]     [incremental] incremental/hashes/inherent_impls.rs
[00:58:14]     [incremental] incremental/hashes/inline_asm.rs
[00:58:14]     [incremental] incremental/hashes/let_expressions.rs
[00:58:14]     [incremental] incremental/hashes/loop_expressions.rs
[00:58:14]     [incremental] incremental/hashes/match_expressions.rs
[00:58:14]     [incremental] incremental/hashes/panic_exprs.rs
[00:58:14]     [incremental] incremental/hashes/statics.rs
[00:58:14]     [incremental] incremental/hashes/struct_constructors.rs
[00:58:14]     [incremental] incremental/hashes/struct_defs.rs
[00:58:14]     [incremental] incremental/hashes/trait_defs.rs
[00:58:14]     [incremental] incremental/hashes/trait_impls.rs
[00:58:14]     [incremental] incremental/hashes/type_defs.rs
[00:58:14]     [incremental] incremental/hashes/unary_and_binary_exprs.rs
[00:58:14]     [incremental] incremental/hashes/while_let_loops.rs
[00:58:14]     [incremental] incremental/hashes/while_loops.rs
[00:58:14]     [incremental] incremental/hello_world.rs
[00:58:14]     [incremental] incremental/ich_method_call_trait_scope.rs
[00:58:14] make: *** [check] Error 1
[00:58:14]     [incremental] incremental/ich_nested_items.rs
[00:58:14]     [incremental] incremental/ich_resolve_results.rs
[00:58:14]     [incremental] incremental/inlined_hir_34991/main.rs
[00:58:14]     [incremental] incremental/issue-35593.rs
[00:58:14]     [incremental] incremental/issue-38222.rs
[00:58:14]     [incremental] incremental/issue-39569.rs
[00:58:14]     [incremental] incremental/issue-39828/issue-39828.rs
[00:58:14]     [incremental] incremental/issue-42602.rs
[00:58:14]     [incremental] incremental/krate-inherent.rs
[00:58:14]     [incremental] incremental/krate-inlined.rs
[00:58:14]     [incremental] incremental/krate_reassign_34991/main.rs
[00:58:14]     [incremental] incremental/macro_export.rs
[00:58:14]     [incremental] incremental/remapped_paths_cc/main.rs
[00:58:14]     [incremental] incremental/remove-private-item-cross-crate/main.rs
[00:58:14]     [incremental] incremental/remove_crate/main.rs
[00:58:14]     [incremental] incremental/remove_source_file/main.rs
[00:58:14]     [incremental] incremental/rlib_cross_crate/b.rs
[00:58:14]     [incremental] incremental/source_loc_macros.rs
[00:58:14]     [incremental] incremental/span_hash_stable/main.rs
[00:58:14]     [incremental] incremental/spans_in_type_debuginfo.rs
[00:58:14]     [incremental] incremental/spans_significant_w_debuginfo.rs
[00:58:14]     [incremental] incremental/spans_significant_w_panic.rs
[00:58:14]     [incremental] incremental/spike.rs
[00:58:14]     [incremental] incremental/static_refering_to_other_static/issue-49081.rs
[00:58:14]     [incremental] incremental/static_refering_to_other_static2/issue.rs
[00:58:14]     [incremental] incremental/static_stable_hash/issue-49301.rs
[00:58:14]     [incremental] incremental/string_constant.rs
[00:58:14]     [incremental] incremental/struct_add_field.rs
[00:58:14]     [incremental] incremental/struct_change_field_name.rs
[00:58:14]     [incremental] incremental/struct_change_field_type.rs
[00:58:14]     [incremental] incremental/struct_change_field_type_cross_crate/b.rs
[00:58:14]     [incremental] incremental/struct_change_nothing.rs
[00:58:14]     [incremental] incremental/struct_remove_field.rs
[00:58:14]     [incremental] incremental/type_alias_cross_crate/b.rs
[00:58:14]     [incremental] incremental/unchecked_dirty_clean.rs
[00:58:14]     [incremental] incremental/warnings-reemitted.rs
[00:58:14]
[00:58:14] test result: FAILED. 5 passed; 81 failed; 0 ignored; 0 measured; 0 filtered out
[00:58:14]
[00:58:14]
[00:58:14]
[00:58:14] 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/incremental" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/incremental" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "incremental" "--target" "x86_64-unknown-linux-gnu" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/usr/lib/llvm-3.9/bin/FileCheck" "--host-rustcflags" "-Crpath -O -Zmiri -Zunstable-options " "--target-rustcflags" "-Crpath -O -Zmiri -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" "3.9.1\n" "--system-llvm" "--cc" "" "--cxx" "" "--cflags" "" "--llvm-components" "" "--llvm-cxxflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--color" "always"
[00:58:14] expected success, got: exit code: 101
[00:58:14]
[00:58:14]
[00:58:14] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test
[00:58:14] Build completed unsuccessfully in 0:18:06
[00:58:14] Makefile:58: recipe for target 'check' failed
---
$ cat obj/tmp/sccache.log

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.

@shepmaster
Copy link
Member

Ping from triage, @michaelwoerister !

file_index_to_file: RefCell<FxHashMap<FileMapIndex, Lrc<FileMap>>>,
synthetic_expansion_infos: RefCell<FxHashMap<AbsoluteBytePos, SyntaxContext>>,
file_index_to_file: Lock<FxHashMap<FileMapIndex, Lrc<FileMap>>>,
synthetic_expansion_infos: Lock<FxHashMap<AbsoluteBytePos, SyntaxContext>>,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These two fields are locked for every span value that's encoded. I wonder if we can do better here. They are just simple caches.

@@ -866,7 +866,7 @@ pub struct GlobalCtxt<'tcx> {
maybe_unused_extern_crates: Vec<(DefId, Span)>,

// Internal cache for metadata decoding. No need to track deps on this.
pub rcache: RefCell<FxHashMap<ty::CReaderCacheKey, Ty<'tcx>>>,
pub rcache: Lock<FxHashMap<ty::CReaderCacheKey, Ty<'tcx>>>,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This field is also used very often, also during metadata encoding. Might be a good candidate for a thread-local cache in the future.

@Zoxc
Copy link
Contributor Author

Zoxc commented Apr 9, 2018

I've added an item to #48685 about making those fields thread-locals.

@Zoxc
Copy link
Contributor Author

Zoxc commented Apr 9, 2018

I made use of init_nonlocking_same when setting cnum_map.

@bors
Copy link
Contributor

bors commented Apr 10, 2018

☔ The latest upstream changes (presumably #49390) made this pull request unmergeable. Please resolve the merge conflicts.

@michaelwoerister
Copy link
Member

Looks good to me. r=me with the overlap with #49558 resolved.

@bors
Copy link
Contributor

bors commented Apr 12, 2018

☔ The latest upstream changes (presumably #49558) made this pull request unmergeable. Please resolve the merge conflicts.

@rust-highfive
Copy link
Collaborator

Your PR failed on Travis (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.
[00:00:46] configure: rust.quiet-tests     := True
---
[00:07:49] error: unused import: `RefCell`
[00:07:49]   --> librustc/ty/context.rs:64:23
[00:07:49]    |
[00:07:49] 64 | use std::cell::{Cell, RefCell};
[00:07:49]    |                       ^^^^^^^
[00:07:49]    |
[00:07:49]    = note: `-D unused-imports` implied by `-D warnings`
---
[00:08:27]   process didn't exit successfully: `/checkout/obj/build/bootstrap/debug/rustc --crate-name rustc librustc/lib.rs --color always --error-format json --crate-type dylib --emit=dep-info,link -C prefer-dynamic -C opt-level=2 -C metadata=23f5dcecdda8feb4 -C extra-filename=-23f5dcecdda8feb4 --out-dir /checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps --target x86_64-unknown-linux-gnu -L dependency=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps -L dependency=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/release/deps --extern tempdir=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libtempdir-65dde0349e75e965.rlib --extern syntax_pos=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libsyntax_pos-9f3518d56a01456f.so --extern log=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblog-3e35efb9e5bc7a9a.rlib --extern rustc_data_structures=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_data_structures-93cb1ddd29ab61a4.so --extern jobserver=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libjobserver-5bcc8c1ccd509892.rlib --extern arena=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libarena-f2778bd6cd1c5bdd.so --extern lazy_static=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblazy_static-2803512e03c19cf7.rlib --extern byteorder=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libbyteorder-ca61dfec7c40c4d4.rlib --extern serialize=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libserialize-c04ded78717d5d67.so --extern serialize=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libserialize-c04ded78717d5d67.rlib --extern proc_macro=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libproc_macro-6e4119b5ec8457a3.so --extern fmt_macros=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libfmt_macros-3706e912fdb98df1.so --extern flate2=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libflate2-3c8223b0152f22a5.rlib --extern bitflags=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-9866e194db82a141.rlib --extern rustc_errors=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_errors-609e2421d03f9c9a.so --extern rustc_const_math=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_const_math-895f7ddc4467bb8d.so --extern graphviz=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libgraphviz-0bde40de32995f14.so --extern rustc_back=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_back-861dba9fe03aa669.so --extern backtrace=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libbacktrace-109fed6e8125a798.rlib --extern rustc_apfloat=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_apfloat-1299638d641ea770.rlib --extern syntax=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libsyntax-d3b6fcf798f7d22a.so -L native=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/backtrace-sys-8b35e3c2ea935fab/out/.libs -L native=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/miniz-sys-63734d0048644b22/out` (exit code: 101)
[00:08:27] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "build" "--target" "x86_64-unknown-linux-gnu" "--release" "--locked" "--color" "always" "--features" " jemalloc" "--manifest-path" "/checkout/src/rustc/Cargo.toml" "--message-format" "json"
[00:08:27] expected success, got: exit code: 101
[00:08:27] thread 'main' panicked at 'cargo must succeed', bootstrap/compile.rs:1085:9
[00:08:27] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[00:08:27] travis_fold:end:stage0-rustc
[00:08:27] travis_time:end:stage0-rustc:start=1523562280720597069,finish=1523562490101738933,duration=209381141864
[00:08:27] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap build
[00:08:27] Build completed unsuccessfully in 0:03:42
[00:08:27] Makefile:28: recipe for target 'all' failed
[00:08:27] make: *** [all] Error 1
---
$ ls -lat $HOME/Library/Logs/DiagnosticReports/
ls: cannot access /home/travis/Library/Logs/DiagnosticReports/: No such file or directory
travis_time:end:1b830ae7:start=1523562490667153007,finish=1523562490674087514,duration=6934507
travis_fold:end:after_failure.2
travis_fold:start:after_failure.3
travis_time:start:269cdcd3
$ find $HOME/Library/Logs/DiagnosticReports -type f -name '*.crash' -not -name '*.stage2-*.crash' -not -name 'com.apple.CoreSimulator.CoreSimulatorService-*.crash' -exec printf travis_fold":start:crashlog\n\033[31;1m%s\033[0m\n" {} \; -exec head -750 {} \; -exec echo travis_fold":"end:crashlog \; || true
find: `/home/travis/Library/Logs/DiagnosticReports': No such file or directory
travis_time:end:269cdcd3:start=1523562490680674680,finish=1523562490687602082,duration=6927402
travis_fold:end:after_failure.3
travis_fold:start:after_failure.4
travis_time:start:2bc7a965
$ dmesg | grep -i kill
[   10.599407] init: failsafe main process (1093) killed by TERM signal

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)

@Zoxc
Copy link
Contributor Author

Zoxc commented Apr 12, 2018

@bors r=michaelwoerister

@bors
Copy link
Contributor

bors commented Apr 12, 2018

📌 Commit 807c1a0 has been approved by michaelwoerister

@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-review Status: Awaiting review from the assignee but also interested parties. labels Apr 12, 2018
kennytm added a commit to kennytm/rust that referenced this pull request Apr 13, 2018
…oerister

Make OnDiskCache thread-safer

I'm not sure if `synthetic_expansion_infos` is handled correctly.

`interpret_alloc_cache` and `interpret_alloc_size` seems to be wrong though, since the code may now decode two `AllocId`s in parallel. I'd like some input on how to fix that.

cc @oli-obk

r? @michaelwoerister
@bors
Copy link
Contributor

bors commented Apr 14, 2018

⌛ Testing commit 807c1a0 with merge fb730d7...

bors added a commit that referenced this pull request Apr 14, 2018
Make OnDiskCache thread-safer

I'm not sure if `synthetic_expansion_infos` is handled correctly.

`interpret_alloc_cache` and `interpret_alloc_size` seems to be wrong though, since the code may now decode two `AllocId`s in parallel. I'd like some input on how to fix that.

cc @oli-obk

r? @michaelwoerister
@bors
Copy link
Contributor

bors commented Apr 14, 2018

☀️ Test successful - status-appveyor, status-travis
Approved by: michaelwoerister
Pushing fb730d7 to master...

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.

7 participants