TimNN / rla-test

0 stars 1 forks source link

RLA v2 Logs Test #2

Open TimNN opened 6 years ago

TimNN commented 6 years ago

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. ```plain Check compiletest suite=ui mode=ui (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [00:42:39] [00:42:39] running 1361 tests [00:42:45] .................................................................................i.................. [00:42:51] ..................F.....i........................................................................... [00:42:58] .................................................................................................... [00:43:02] .................................................................................................... [00:43:07] .................................................................................................... [00:43:13] .................................................................................................... --- [00:43:56] [00:43:56] ---- [ui] ui/const-fn-error.rs stdout ---- [00:43:56] diff of stderr: [00:43:56] [00:43:56] 4 LL | let mut sum = 0; [00:43:56] 6 [00:43:56] 6 [00:43:56] - error[E0015]: calls in constant functions are limited to constant functions, struct and enum constructors [00:43:56] + error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants [00:43:56] 9 | [00:43:56] 9 | [00:43:56] 10 LL | for i in 0..x { [00:43:56] [00:43:56] The actual stderr differed from the expected stderr. [00:43:56] Actual stderr saved to /checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/const-fn-error.stderr [00:43:56] To update references, run this command from build directory: [00:43:56] To update references, run this command from build directory: [00:43:56] /checkout/src/test/ui/update-references.sh '/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui' 'const-fn-error.rs' [00:43:56] error: 1 errors occurred comparing output. [00:43:56] status: exit code: 101 [00:43:56] status: exit code: 101 [00:43:56] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/ui/const-fn-error.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--target=x86_64-unknown-linux-gnu" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/const-fn-error.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/const-fn-error.stage2-x86_64-unknown-linux-gnu.aux" "-A" "unused" [00:43:56] ------------------------------------------ [00:43:56] [00:43:56] ------------------------------------------ [00:43:56] stderr: [00:43:56] stderr: [00:43:56] ------------------------------------------ [00:43:56] {"message":"blocks in constant functions are limited to items and tail expressions","code":{"code":"E0016","explanation":"\nBlocks in constants may only contain items (such as constant, function\ndefinition, etc...) and a tail expression. Erroneous code example:\n\n```compile_fail,E0016\nconst FOO: i32 = { let x = 0; x }; // 'x' isn't an item!\n```\n\nTo avoid it, you have to replace the non-item object:\n\n```\nconst FOO: i32 = { const X : i32 = 0; X };\n```\n"},"level":"error","spans":[{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":562,"byte_end":563,"line_start":16,"line_end":16,"column_start":19,"column_end":20,"is_primary":true,"text":[{"text":" let mut sum = 0;","highlight_start":19,"highlight_end":20}],"label":null,"suggested_replacement":null,"expansion":null}],"children":[],"rendered":"error[E0016]: blocks in constant functions are limited to items and tail expressions\n --> /checkout/src/test/ui/const-fn-error.rs:16:19\n |\nLL | let mut sum = 0;\n | ^\n\n"} [00:43:56] {"message":"calls in constant functions are limited to constant functions, tuple structs and tuple variants","code":{"code":"E0015","explanation":"\nThe only functions that can be called in static or constant expressions are\n`const` functions, and struct/enum constructors. `const` functions are only\navailable on a nightly compiler. Rust currently does not support more general\ncompile-time function execution.\n\n```\nconst FOO: Option = Some(1); // enum constructor\nstruct Bar {x: u8}\nconst BAR: Bar = Bar {x: 1}; // struct constructor\n```\n\nSee [RFC 911] for more details on the design of `const fn`s.\n\n[RFC 911]: https://github.com/rust-lang/rfcs/blob/master/text/0911-const-fn.md\n"},"level":"error","spans":[{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":{"span":{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":false,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":null},"macro_decl_name":"desugaring of `...`","def_site_span":{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":false,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":null}}}],"children":[],"rendered":"error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants\n --> /checkout/src/test/ui/const-fn-error.rs:18:14\n |\nLL | for i in 0..x {\n | ^^^^\n\n"} [00:43:56] {"message":"constant function contains unimplemented expression type","code":{"code":"E0019","explanation":"\nA function call isn't allowed in the const's initialization expression\nbecause the expression's value must be known at compile-time. Erroneous code\nexample:\n\n```compile_fail\nenum Test {\n V1\n}\n\nimpl Test {\n fn test(&self) -> i32 {\n 12\n }\n}\n\nfn main() {\n const FOO: Test = Test::V1;\n\n const A: i32 = FOO.test(); // You can't call Test::func() here!\n}\n```\n\nRemember: you can't use a function call inside a const's initialization\nexpression! However, you can totally use it anywhere else:\n\n```\nenum Test {\n V1\n}\n\nimpl Test {\n fn func(&self) -> i32 {\n 12\n }\n}\n\nfn main() {\n const FOO: Test = Test::V1;\n\n FOO.func(); // here is good\n let x = FOO.func(); // or even here!\n}\n```\n"},"level":"error","spans":[{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":{"span":{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":false,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":null},"macro_decl_name":"desugaring of `...`","def_site_span":{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":false,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":null}}}],"children":[],"rendered":"error[E0019]: constant function contains unimplemented expression type\n --> /checkout/src/test/ui/const-fn-error.rs:18:14\n |\nLL | for i in 0..x {\n | ^^^^\n\n"} [00:43:56] {"message":"constant evaluation error","code":{"code":"E0080","explanation":"\nThis error indicates that the compiler was unable to sensibly evaluate an\nconstant expression that had to be evaluated. Attempting to divide by 0\nor causing integer overflow are two ways to induce this error. For example:\n\n```compile_fail,E0080\nenum Enum {\n X = (1 << 500),\n Y = (1 / 0)\n}\n```\n\nEnsure that the expressions given can be evaluated as the desired integer type.\nSee the FFI section of the Reference for more information about using a custom\ninteger type:\n\nhttps://doc.rust-lang.org/reference.html#ffi-attributes\n"},"level":"error","spans":[{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":true,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":"calling non-const fn `>::into_iter`","suggested_replacement":null,"expansion":{"span":{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":false,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":null},"macro_decl_name":"desugaring of `...`","def_site_span":{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":599,"byte_end":603,"line_start":18,"line_end":18,"column_start":14,"column_end":18,"is_primary":false,"text":[{"text":" for i in 0..x {","highlight_start":14,"highlight_end":18}],"label":null,"suggested_replacement":null,"expansion":null}}},{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":773,"byte_end":777,"line_start":29,"line_end":29,"column_start":19,"column_end":23,"is_primary":false,"text":[{"text":" let a : [i32; f(X)];","highlight_start":19,"highlight_end":23}],"label":"inside call to `f`","suggested_replacement":null,"expansion":null}],"children":[{"message":"for constant expression here","code":null,"level":"note","spans":[{"file_name":"/checkout/src/test/ui/const-fn-error.rs","byte_start":767,"byte_end":778,"line_start":29,"line_end":29,"column_start":13,"column_end":24,"is_primary":true,"text":[{"text":" let a : [i32; f(X)];","highlight_start":13,"highlight_end":24}],"label":null,"suggested_replacement":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"error[E0080]: constant evaluation error\n --> /checkout/src/test/ui/const-fn-error.rs:18:14\n |\nLL | for i in 0..x {\n | ^^^^ calling non-const fn `>::into_iter`\n...\nLL | let a : [i32; f(X)];\n | ---- inside call to `f`\n |\nnote: for constant expression here\n --> /checkout/src/test/ui/const-fn-error.rs:29:13\n |\nLL | let a : [i32; f(X)];\n | ^^^^^^^^^^^\n\n"} [00:43:56] {"message":"aborting due to 4 previous errors","code":null,"level":"error","spans":[],"children":[],"rendered":"error: aborting due to 4 previous errors\n\n"} [00:43:56] {"message":"Some errors occurred: E0015, E0016, E0019, E0080.","code":null,"level":"","spans":[],"children":[],"rendered":"Some errors occurred: E0015, E0016, E0019, E0080.\n"} [00:43:56] {"message":"For more information about an error, try `rustc --explain E0015`.","code":null,"level":"","spans":[],"children":[],"rendered":"For more information about an error, try `rustc --explain E0015`.\n"} [00:43:56] ------------------------------------------ [00:43:56] [00:43:56] thread '[ui] ui/const-fn-error.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2930:9 [00:43:56] note: Run with `RUST_BACKTRACE=1` for a backtrace. --- [00:43:56] [00:43:56] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [00:43:56] [00:43:56] [00:43:56] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/compiletest" "--compile-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib" "--run-lib-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/lib/rustlib/x86_64-unknown-linux-gnu/lib" "--rustc-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "--src-base" "/checkout/src/test/ui" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "ui" "--target" "x86_64-unknown-linux-gnu" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/usr/lib/llvm-3.9/bin/FileCheck" "--host-rustcflags" "-Crpath -O -Zunstable-options " "--target-rustcflags" "-Crpath -O -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:43:56] [00:43:56] [00:43:56] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [00:43:56] Build completed unsuccessfully in 0:02:23 [00:43:56] Build completed unsuccessfully in 0:02:23 [00:43:56] Makefile:58: recipe for target 'check' failed [00:43:56] make: *** [check] Error 1 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:010a2be7 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:42:34] Documenting book redirect pages (x86_64-unknown-linux-gnu) [00:42:35] Documenting stage2 std (x86_64-unknown-linux-gnu) [00:42:35] Compiling core v0.0.0 (file:///checkout/src/libcore) [00:42:35] Documenting core v0.0.0 (file:///checkout/src/libcore) [00:42:45] thread 'main' panicked at 'assertion failed: *old == value', librustc_data_structures/sync.rs:241:42 [00:42:46] error: Could not compile `core`. [00:42:46] warning: build failed, waiting for other jobs to finish... [00:43:25] warning: [1] cannot be resolved, ignoring it... [00:43:25] --- [00:43:28] [00:43:33] error: build failed [00:43:33] [00:43:33] [00:43:33] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "doc" "--target" "x86_64-unknown-linux-gnu" "--release" "--locked" "--color" "always" "--features" "panic-unwind jemalloc backtrace" "--manifest-path" "/checkout/src/libstd/Cargo.toml" "--no-deps" "-p" "alloc" "-p" "core" "-p" "std" "-p" "std_unicode" [00:43:33] [00:43:33] [00:43:33] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap doc [00:43:33] Build completed unsuccessfully in 0:05:47 [00:43:33] Build completed unsuccessfully in 0:05:47 [00:43:33] make: *** [all] Error 1 [00:43:33] Makefile:28: recipe for target 'all' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:033e987b $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:14:06] travis_time:end:llvm:start=1523992492747333224,finish=1523992816596161187,duration=323848827963 [00:14:06] [TIMING] Llvm { target: "x86_64-unknown-linux-gnu", emscripten: false } -- 323.849 [00:14:06] running: "cmake" "/checkout/src/llvm" "-DCMAKE_SYSTEM_NAME=Windows" "-DCMAKE_RC_COMPILER=/usr/bin/i686-w64-mingw32-windres" "-DLLVM_ENABLE_ASSERTIONS=ON" "-DLLVM_TARGETS_TO_BUILD=X86;ARM;AArch64;Mips;PowerPC;SystemZ;MSP430;Sparc;NVPTX;Hexagon" "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly" "-DLLVM_INCLUDE_EXAMPLES=OFF" "-DLLVM_INCLUDE_TESTS=OFF" "-DLLVM_INCLUDE_DOCS=OFF" "-DLLVM_ENABLE_ZLIB=OFF" "-DWITH_POLLY=OFF" "-DLLVM_ENABLE_TERMINFO=OFF" "-DLLVM_ENABLE_LIBEDIT=OFF" "-DLLVM_PARALLEL_COMPILE_JOBS=4" "-DLLVM_TARGET_ARCH=i686" "-DLLVM_DEFAULT_TARGET_TRIPLE=i686-pc-windows-gnu" "-DLLVM_OCAML_INSTALL_PATH=usr/lib/ocaml" "-DLLVM_BUILD_32_BITS=ON" "-DCMAKE_CROSSCOMPILING=True" "-DLLVM_TABLEGEN=/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/bin/llvm-tblgen" "-DLLVM_NATIVE_BUILD=/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build" "-DCMAKE_C_COMPILER=sccache" "-DCMAKE_C_COMPILER_ARG1=i686-w64-mingw32-gcc" "-DCMAKE_CXX_COMPILER=sccache" "-DCMAKE_CXX_COMPILER_ARG1=i686-w64-mingw32-g++" "-DCMAKE_C_FLAGS=-ffunction-sections -fdata-sections -m32 -fno-omit-frame-pointer" "-DCMAKE_CXX_FLAGS=-ffunction-sections -fdata-sections -m32 -fno-omit-frame-pointer" "-DCMAKE_INSTALL_PREFIX=/checkout/obj/build/i686-pc-windows-gnu/llvm" "-DCMAKE_BUILD_TYPE=Release" [00:14:06] -- The CXX compiler identification is GNU 5.3.1 [00:14:06] -- The ASM compiler identification is GNU [00:14:06] -- Found assembler: /usr/local/bin/sccache [00:14:06] -- Check for working C compiler: /usr/local/bin/sccache --- [00:14:15] -- Looking for strerror_r - not found [00:14:15] -- Looking for strerror_s [00:14:16] -- Looking for strerror_s - found [00:14:16] -- Looking for setenv [00:14:16] -- Looking for setenv - not found [00:14:16] -- Looking for _chsize_s [00:14:16] -- Looking for _chsize_s - found [00:14:16] -- Looking for _alloca [00:14:16] -- Looking for _alloca - found [00:14:16] -- Looking for __alloca [00:14:16] -- Looking for __alloca - not found [00:14:16] -- Looking for __chkstk [00:14:16] -- Looking for __chkstk - found [00:14:16] -- Looking for __chkstk_ms [00:14:17] -- Looking for __chkstk_ms - found [00:14:17] -- Looking for ___chkstk [00:14:17] -- Looking for ___chkstk - not found [00:14:17] -- Looking for ___chkstk_ms [00:14:17] -- Looking for ___chkstk_ms - not found [00:14:17] -- Looking for __ashldi3 [00:14:17] -- Looking for __ashldi3 - found [00:14:17] -- Looking for __ashrdi3 [00:14:17] -- Looking for __ashrdi3 - found [00:14:17] -- Looking for __divdi3 [00:14:18] -- Looking for __divdi3 - found [00:14:18] -- Looking for __fixdfdi [00:14:18] -- Looking for __fixdfdi - found [00:14:18] -- Looking for __fixsfdi [00:14:18] -- Looking for __fixsfdi - found [00:14:18] -- Looking for __floatdidf [00:14:18] -- Looking for __floatdidf - found [00:14:18] -- Looking for __lshrdi3 [00:14:18] -- Looking for __lshrdi3 - found [00:14:18] -- Looking for __moddi3 [00:14:19] -- Looking for __moddi3 - found [00:14:19] -- Looking for __udivdi3 [00:14:19] -- Looking for __udivdi3 - found [00:14:19] -- Looking for __umoddi3 [00:14:19] -- Looking for __umoddi3 - found [00:14:19] -- Looking for __main [00:14:19] -- Looking for __main - found [00:14:19] -- Looking for __cmpdi2 [00:14:19] -- Looking for __cmpdi2 - found [00:14:20] -- Looking for __GLIBC__ - not found [00:14:20] -- Looking for sched_getaffinity [00:14:20] -- Looking for sched_getaffinity - not found [00:14:20] -- Looking for CPU_COUNT --- [00:14:23] -- Performing Test CXX_SUPPORTS_STRING_CONVERSION_FLAG [00:14:23] -- Performing Test CXX_SUPPORTS_STRING_CONVERSION_FLAG - Failed [00:14:23] -- Found PythonInterp: /usr/bin/python2.7 (found version "2.7.12") [00:14:23] -- Constructing LLVMBuild project information [00:14:23] -- LLVMHello ignored -- Loadable modules not supported on this platform. [00:14:23] -- Targeting ARM [00:14:23] -- Targeting AArch64 [00:14:23] -- Targeting Mips [00:14:23] -- Targeting PowerPC [00:14:23] -- Targeting PowerPC [00:14:23] -- Targeting SystemZ [00:14:24] -- Targeting MSP430 [00:14:24] -- Targeting Sparc [00:14:24] -- Targeting NVPTX [00:14:24] -- Targeting Hexagon [00:14:24] -- Targeting WebAssembly [00:14:24] -- BugpointPasses ignored -- Loadable modules not supported on this platform. [00:14:26] -- Generating done [00:14:26] CMake Warning: [00:14:26] Manually-specified variables were not used by the project: [00:14:26] --- [00:15:48] [ 1%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/DebugCounter.cpp.obj [00:15:49] [ 1%] Linking CXX static library ../../libLLVMBitWriter.a [00:15:49] [ 1%] Built target LLVMBitWriter [00:15:49] Scanning dependencies of target LLVMInstrumentation [00:15:49] [ 2%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/AddressSanitizer.cpp.obj [00:15:51] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CodeGenRegisters.cpp.obj [00:15:52] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/DeltaAlgorithm.cpp.obj [00:15:55] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/DAGDeltaAlgorithm.cpp.obj [00:15:55] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BasicBlockUtils.cpp.obj [00:15:59] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/Error.cpp.obj [00:16:02] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.obj [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:60:13: error: 'mutex' in namespace 'std' does not name a type [00:16:05] static std::mutex ErrorHandlerMutex; [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:61:13: error: 'mutex' in namespace 'std' does not name a type [00:16:05] static std::mutex BadAllocErrorHandlerMutex; [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::install_fatal_error_handler(llvm::fatal_error_handler_t, void*)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:36: error: 'ErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::remove_fatal_error_handler()': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:36: error: 'ErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::report_fatal_error(const llvm::Twine&, bool)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:21: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:21: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:31: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:38: error: 'ErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::install_bad_alloc_error_handler(llvm::fatal_error_handler_t, void*)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:36: error: 'BadAllocErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::remove_bad_alloc_error_handler()': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:36: error: 'BadAllocErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::report_bad_alloc_error(const char*, bool)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:21: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:21: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:31: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:38: error: 'BadAllocErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] lib/Support/CMakeFiles/LLVMSupport.dir/build.make:813: recipe for target 'lib/Support/CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.obj' failed [00:16:05] make[2]: *** [lib/Support/CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.obj] Error 1 [00:16:05] CMakeFiles/Makefile2:528: recipe for target 'lib/Support/CMakeFiles/LLVMSupport.dir/all' failed [00:16:05] make[1]: *** [lib/Support/CMakeFiles/LLVMSupport.dir/all] Error 2 [00:16:05] make[1]: *** Waiting for unfinished jobs.... [00:16:05] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BreakCriticalEdges.cpp.obj [00:16:05] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/BoundsChecking.cpp.obj [00:16:06] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BuildLibCalls.cpp.obj [00:16:08] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CodeGenSchedule.cpp.obj [00:16:13] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/DataFlowSanitizer.cpp.obj [00:16:13] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CodeGenTarget.cpp.obj [00:16:14] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BypassSlowDivision.cpp.obj [00:16:20] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelEmitter.cpp.obj [00:16:22] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CallPromotionUtils.cpp.obj [00:16:24] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcherEmitter.cpp.obj [00:16:27] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcherGen.cpp.obj [00:16:27] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/GCOVProfiling.cpp.obj [00:16:28] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CloneFunction.cpp.obj [00:16:34] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcherOpt.cpp.obj [00:16:35] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcher.cpp.obj [00:16:39] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/MemorySanitizer.cpp.obj [00:16:40] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CloneModule.cpp.obj [00:16:40] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DFAPacketizerEmitter.cpp.obj [00:16:41] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DisassemblerEmitter.cpp.obj [00:16:46] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/FastISelEmitter.cpp.obj [00:16:47] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CodeExtractor.cpp.obj [00:16:48] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/FixedLenDecoderEmitter.cpp.obj [00:16:53] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/IndirectCallPromotion.cpp.obj [00:16:58] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/GlobalISelEmitter.cpp.obj [00:16:58] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CtorUtils.cpp.obj [00:17:00] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/InfoByHwMode.cpp.obj [00:17:03] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/DemoteRegToStack.cpp.obj [00:17:04] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/Instrumentation.cpp.obj [00:17:05] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/InstrInfoEmitter.cpp.obj [00:17:08] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/InstrProfiling.cpp.obj [00:17:10] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/EntryExitInstrumenter.cpp.obj [00:17:16] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/InstrDocsEmitter.cpp.obj [00:17:17] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/EscapeEnumerator.cpp.obj [00:17:20] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/PGOInstrumentation.cpp.obj [00:17:22] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/IntrinsicEmitter.cpp.obj [00:17:23] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/OptParserEmitter.cpp.obj [00:17:23] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/Evaluator.cpp.obj [00:17:27] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/PseudoLoweringEmitter.cpp.obj [00:17:30] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/RegisterBankEmitter.cpp.obj [00:17:32] [ 4%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/FlattenCFG.cpp.obj [00:17:34] [ 4%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/RegisterInfoEmitter.cpp.obj [00:17:36] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SDNodeProperties.cpp.obj [00:17:39] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/PGOMemOPSizeOpt.cpp.obj [00:17:39] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SearchableTableEmitter.cpp.obj [00:17:39] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/FunctionComparator.cpp.obj [00:17:45] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SubtargetEmitter.cpp.obj [00:17:47] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/FunctionImportUtils.cpp.obj [00:17:49] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SubtargetFeatureInfo.cpp.obj [00:17:49] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/SanitizerCoverage.cpp.obj [00:17:53] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/TableGen.cpp.obj [00:17:53] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/GlobalStatus.cpp.obj [00:17:56] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/Types.cpp.obj [00:17:56] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/ThreadSanitizer.cpp.obj [00:17:56] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86DisassemblerTables.cpp.obj [00:17:58] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/InlineFunction.cpp.obj [00:18:00] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/ImportedFunctionsInliningStatistics.cpp.obj [00:18:01] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86EVEX2VEXTablesEmitter.cpp.obj [00:18:05] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/InstructionNamer.cpp.obj [00:18:07] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/EfficiencySanitizer.cpp.obj [00:18:07] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86FoldTablesEmitter.cpp.obj [00:18:09] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/IntegerDivision.cpp.obj [00:18:14] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86ModRMFilters.cpp.obj [00:18:14] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86RecognizableInstr.cpp.obj [00:18:15] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/LCSSA.cpp.obj [00:18:16] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/LibCallsShrinkWrap.cpp.obj [00:18:16] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/HWAddressSanitizer.cpp.obj [00:18:19] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CTagsEmitter.cpp.obj [00:18:23] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/Local.cpp.obj [00:18:23] [ 5%] Linking CXX static library ../../libLLVMInstrumentation.a [00:18:23] [ 5%] Built target LLVMInstrumentation [00:18:23] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/LoopSimplify.cpp.obj --- [00:19:26] [ 6%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/ValueMapper.cpp.obj [00:19:27] [ 6%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/VNCoercion.cpp.obj [00:19:33] [ 6%] Linking CXX static library ../../libLLVMTransformUtils.a [00:19:33] [ 6%] Built target LLVMTransformUtils [00:19:33] Makefile:149: recipe for target 'all' failed [00:19:33] make: *** [all] Error 2 [00:19:33] command did not execute successfully, got: exit code: 2 [00:19:33] [00:19:33] [00:19:33] build script failed, must exit now', /cargo/registry/src/github.com-1ecc6299db9ec823/cmake-0.1.29/src/lib.rs:632:5 [00:19:33] finished in 651.675 [00:19:33] travis_fold:end:llvm [00:19:33] travis_time:end:llvm:start=1523992492746959810,finish=1523993144422742985,duration=651675783175 ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:14:06] travis_time:end:llvm:start=1523992492747333224,finish=1523992816596161187,duration=323848827963 [00:14:06] [TIMING] Llvm { target: "x86_64-unknown-linux-gnu", emscripten: false } -- 323.849 [00:14:06] running: "cmake" "/checkout/src/llvm" "-DCMAKE_SYSTEM_NAME=Windows" "-DCMAKE_RC_COMPILER=/usr/bin/i686-w64-mingw32-windres" "-DLLVM_ENABLE_ASSERTIONS=ON" "-DLLVM_TARGETS_TO_BUILD=X86;ARM;AArch64;Mips;PowerPC;SystemZ;MSP430;Sparc;NVPTX;Hexagon" "-DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=WebAssembly" "-DLLVM_INCLUDE_EXAMPLES=OFF" "-DLLVM_INCLUDE_TESTS=OFF" "-DLLVM_INCLUDE_DOCS=OFF" "-DLLVM_ENABLE_ZLIB=OFF" "-DWITH_POLLY=OFF" "-DLLVM_ENABLE_TERMINFO=OFF" "-DLLVM_ENABLE_LIBEDIT=OFF" "-DLLVM_PARALLEL_COMPILE_JOBS=4" "-DLLVM_TARGET_ARCH=i686" "-DLLVM_DEFAULT_TARGET_TRIPLE=i686-pc-windows-gnu" "-DLLVM_OCAML_INSTALL_PATH=usr/lib/ocaml" "-DLLVM_BUILD_32_BITS=ON" "-DCMAKE_CROSSCOMPILING=True" "-DLLVM_TABLEGEN=/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/bin/llvm-tblgen" "-DLLVM_NATIVE_BUILD=/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build" "-DCMAKE_C_COMPILER=sccache" "-DCMAKE_C_COMPILER_ARG1=i686-w64-mingw32-gcc" "-DCMAKE_CXX_COMPILER=sccache" "-DCMAKE_CXX_COMPILER_ARG1=i686-w64-mingw32-g++" "-DCMAKE_C_FLAGS=-ffunction-sections -fdata-sections -m32 -fno-omit-frame-pointer" "-DCMAKE_CXX_FLAGS=-ffunction-sections -fdata-sections -m32 -fno-omit-frame-pointer" "-DCMAKE_INSTALL_PREFIX=/checkout/obj/build/i686-pc-windows-gnu/llvm" "-DCMAKE_BUILD_TYPE=Release" [00:14:06] -- The CXX compiler identification is GNU 5.3.1 [00:14:06] -- The ASM compiler identification is GNU [00:14:06] -- Found assembler: /usr/local/bin/sccache [00:14:06] -- Check for working C compiler: /usr/local/bin/sccache --- [00:14:15] -- Looking for strerror_r - not found [00:14:15] -- Looking for strerror_s [00:14:16] -- Looking for strerror_s - found [00:14:16] -- Looking for setenv [00:14:16] -- Looking for setenv - not found [00:14:16] -- Looking for _chsize_s [00:14:16] -- Looking for _chsize_s - found [00:14:16] -- Looking for _alloca [00:14:16] -- Looking for _alloca - found [00:14:16] -- Looking for __alloca [00:14:16] -- Looking for __alloca - not found [00:14:16] -- Looking for __chkstk [00:14:16] -- Looking for __chkstk - found [00:14:16] -- Looking for __chkstk_ms [00:14:17] -- Looking for __chkstk_ms - found [00:14:17] -- Looking for ___chkstk [00:14:17] -- Looking for ___chkstk - not found [00:14:17] -- Looking for ___chkstk_ms [00:14:17] -- Looking for ___chkstk_ms - not found [00:14:17] -- Looking for __ashldi3 [00:14:17] -- Looking for __ashldi3 - found [00:14:17] -- Looking for __ashrdi3 [00:14:17] -- Looking for __ashrdi3 - found [00:14:17] -- Looking for __divdi3 [00:14:18] -- Looking for __divdi3 - found [00:14:18] -- Looking for __fixdfdi [00:14:18] -- Looking for __fixdfdi - found [00:14:18] -- Looking for __fixsfdi [00:14:18] -- Looking for __fixsfdi - found [00:14:18] -- Looking for __floatdidf [00:14:18] -- Looking for __floatdidf - found [00:14:18] -- Looking for __lshrdi3 [00:14:18] -- Looking for __lshrdi3 - found [00:14:18] -- Looking for __moddi3 [00:14:19] -- Looking for __moddi3 - found [00:14:19] -- Looking for __udivdi3 [00:14:19] -- Looking for __udivdi3 - found [00:14:19] -- Looking for __umoddi3 [00:14:19] -- Looking for __umoddi3 - found [00:14:19] -- Looking for __main [00:14:19] -- Looking for __main - found [00:14:19] -- Looking for __cmpdi2 [00:14:19] -- Looking for __cmpdi2 - found [00:14:20] -- Looking for __GLIBC__ - not found [00:14:20] -- Looking for sched_getaffinity [00:14:20] -- Looking for sched_getaffinity - not found [00:14:20] -- Looking for CPU_COUNT --- [00:14:23] -- Performing Test CXX_SUPPORTS_STRING_CONVERSION_FLAG [00:14:23] -- Performing Test CXX_SUPPORTS_STRING_CONVERSION_FLAG - Failed [00:14:23] -- Found PythonInterp: /usr/bin/python2.7 (found version "2.7.12") [00:14:23] -- Constructing LLVMBuild project information [00:14:23] -- LLVMHello ignored -- Loadable modules not supported on this platform. [00:14:23] -- Targeting ARM [00:14:23] -- Targeting AArch64 [00:14:23] -- Targeting Mips [00:14:23] -- Targeting PowerPC [00:14:23] -- Targeting PowerPC [00:14:23] -- Targeting SystemZ [00:14:24] -- Targeting MSP430 [00:14:24] -- Targeting Sparc [00:14:24] -- Targeting NVPTX [00:14:24] -- Targeting Hexagon [00:14:24] -- Targeting WebAssembly [00:14:24] -- BugpointPasses ignored -- Loadable modules not supported on this platform. [00:14:26] -- Generating done [00:14:26] CMake Warning: [00:14:26] Manually-specified variables were not used by the project: [00:14:26] --- [00:15:48] [ 1%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/DebugCounter.cpp.obj [00:15:49] [ 1%] Linking CXX static library ../../libLLVMBitWriter.a [00:15:49] [ 1%] Built target LLVMBitWriter [00:15:49] Scanning dependencies of target LLVMInstrumentation [00:15:49] [ 2%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/AddressSanitizer.cpp.obj [00:15:51] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CodeGenRegisters.cpp.obj [00:15:52] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/DeltaAlgorithm.cpp.obj [00:15:55] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/DAGDeltaAlgorithm.cpp.obj [00:15:55] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BasicBlockUtils.cpp.obj [00:15:59] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/Error.cpp.obj [00:16:02] [ 3%] Building CXX object lib/Support/CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.obj [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:60:13: error: 'mutex' in namespace 'std' does not name a type [00:16:05] static std::mutex ErrorHandlerMutex; [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:61:13: error: 'mutex' in namespace 'std' does not name a type [00:16:05] static std::mutex BadAllocErrorHandlerMutex; [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::install_fatal_error_handler(llvm::fatal_error_handler_t, void*)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:36: error: 'ErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:67:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::remove_fatal_error_handler()': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:36: error: 'ErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:76:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::report_fatal_error(const llvm::Twine&, bool)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:21: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:21: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:31: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:38: error: 'ErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:101:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(ErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::install_bad_alloc_error_handler(llvm::fatal_error_handler_t, void*)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:36: error: 'BadAllocErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:132:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::remove_bad_alloc_error_handler()': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:19: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:19: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:29: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:36: error: 'BadAllocErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:141:31: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp: In function 'void llvm::report_bad_alloc_error(const char*, bool)': [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:21: error: 'mutex' is not a member of 'std' [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:21: error: 'mutex' is not a member of 'std' [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:31: error: template argument 1 is invalid [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:38: error: 'BadAllocErrorHandlerMutex' was not declared in this scope [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] /checkout/src/llvm/lib/Support/ErrorHandling.cpp:154:33: warning: unused variable 'Lock' [-Wunused-variable] [00:16:05] std::lock_guard Lock(BadAllocErrorHandlerMutex); [00:16:05] ^ [00:16:05] lib/Support/CMakeFiles/LLVMSupport.dir/build.make:813: recipe for target 'lib/Support/CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.obj' failed [00:16:05] make[2]: *** [lib/Support/CMakeFiles/LLVMSupport.dir/ErrorHandling.cpp.obj] Error 1 [00:16:05] CMakeFiles/Makefile2:528: recipe for target 'lib/Support/CMakeFiles/LLVMSupport.dir/all' failed [00:16:05] make[1]: *** [lib/Support/CMakeFiles/LLVMSupport.dir/all] Error 2 [00:16:05] make[1]: *** Waiting for unfinished jobs.... [00:16:05] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BreakCriticalEdges.cpp.obj [00:16:05] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/BoundsChecking.cpp.obj [00:16:06] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BuildLibCalls.cpp.obj [00:16:08] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CodeGenSchedule.cpp.obj [00:16:13] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/DataFlowSanitizer.cpp.obj [00:16:13] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CodeGenTarget.cpp.obj [00:16:14] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/BypassSlowDivision.cpp.obj [00:16:20] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelEmitter.cpp.obj [00:16:22] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CallPromotionUtils.cpp.obj [00:16:24] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcherEmitter.cpp.obj [00:16:27] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcherGen.cpp.obj [00:16:27] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/GCOVProfiling.cpp.obj [00:16:28] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CloneFunction.cpp.obj [00:16:34] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcherOpt.cpp.obj [00:16:35] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DAGISelMatcher.cpp.obj [00:16:39] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/MemorySanitizer.cpp.obj [00:16:40] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CloneModule.cpp.obj [00:16:40] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DFAPacketizerEmitter.cpp.obj [00:16:41] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/DisassemblerEmitter.cpp.obj [00:16:46] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/FastISelEmitter.cpp.obj [00:16:47] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CodeExtractor.cpp.obj [00:16:48] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/FixedLenDecoderEmitter.cpp.obj [00:16:53] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/IndirectCallPromotion.cpp.obj [00:16:58] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/GlobalISelEmitter.cpp.obj [00:16:58] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/CtorUtils.cpp.obj [00:17:00] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/InfoByHwMode.cpp.obj [00:17:03] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/DemoteRegToStack.cpp.obj [00:17:04] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/Instrumentation.cpp.obj [00:17:05] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/InstrInfoEmitter.cpp.obj [00:17:08] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/InstrProfiling.cpp.obj [00:17:10] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/EntryExitInstrumenter.cpp.obj [00:17:16] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/InstrDocsEmitter.cpp.obj [00:17:17] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/EscapeEnumerator.cpp.obj [00:17:20] [ 3%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/PGOInstrumentation.cpp.obj [00:17:22] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/IntrinsicEmitter.cpp.obj [00:17:23] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/OptParserEmitter.cpp.obj [00:17:23] [ 3%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/Evaluator.cpp.obj [00:17:27] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/PseudoLoweringEmitter.cpp.obj [00:17:30] [ 3%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/RegisterBankEmitter.cpp.obj [00:17:32] [ 4%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/FlattenCFG.cpp.obj [00:17:34] [ 4%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/RegisterInfoEmitter.cpp.obj [00:17:36] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SDNodeProperties.cpp.obj [00:17:39] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/PGOMemOPSizeOpt.cpp.obj [00:17:39] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SearchableTableEmitter.cpp.obj [00:17:39] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/FunctionComparator.cpp.obj [00:17:45] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SubtargetEmitter.cpp.obj [00:17:47] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/FunctionImportUtils.cpp.obj [00:17:49] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/SubtargetFeatureInfo.cpp.obj [00:17:49] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/SanitizerCoverage.cpp.obj [00:17:53] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/TableGen.cpp.obj [00:17:53] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/GlobalStatus.cpp.obj [00:17:56] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/Types.cpp.obj [00:17:56] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/ThreadSanitizer.cpp.obj [00:17:56] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86DisassemblerTables.cpp.obj [00:17:58] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/InlineFunction.cpp.obj [00:18:00] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/ImportedFunctionsInliningStatistics.cpp.obj [00:18:01] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86EVEX2VEXTablesEmitter.cpp.obj [00:18:05] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/InstructionNamer.cpp.obj [00:18:07] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/EfficiencySanitizer.cpp.obj [00:18:07] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86FoldTablesEmitter.cpp.obj [00:18:09] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/IntegerDivision.cpp.obj [00:18:14] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86ModRMFilters.cpp.obj [00:18:14] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/X86RecognizableInstr.cpp.obj [00:18:15] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/LCSSA.cpp.obj [00:18:16] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/LibCallsShrinkWrap.cpp.obj [00:18:16] [ 5%] Building CXX object lib/Transforms/Instrumentation/CMakeFiles/LLVMInstrumentation.dir/HWAddressSanitizer.cpp.obj [00:18:19] [ 5%] Building CXX object utils/TableGen/CMakeFiles/obj.llvm-tblgen.dir/CTagsEmitter.cpp.obj [00:18:23] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/Local.cpp.obj [00:18:23] [ 5%] Linking CXX static library ../../libLLVMInstrumentation.a [00:18:23] [ 5%] Built target LLVMInstrumentation [00:18:23] [ 5%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/LoopSimplify.cpp.obj --- [00:19:26] [ 6%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/ValueMapper.cpp.obj [00:19:27] [ 6%] Building CXX object lib/Transforms/Utils/CMakeFiles/LLVMTransformUtils.dir/VNCoercion.cpp.obj [00:19:33] [ 6%] Linking CXX static library ../../libLLVMTransformUtils.a [00:19:33] [ 6%] Built target LLVMTransformUtils [00:19:33] Makefile:149: recipe for target 'all' failed [00:19:33] make: *** [all] Error 2 [00:19:33] command did not execute successfully, got: exit code: 2 [00:19:33] [00:19:33] [00:19:33] build script failed, must exit now', /cargo/registry/src/github.com-1ecc6299db9ec823/cmake-0.1.29/src/lib.rs:632:5 [00:19:33] finished in 651.675 [00:19:33] travis_fold:end:llvm [00:19:33] travis_time:end:llvm:start=1523992492746959810,finish=1523993144422742985,duration=651675783175 ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain ###################################################################### 97.6% ######################################################################## 100.0% [00:01:09] extracting /checkout/obj/build/cache/2018-04-04/cargo-beta-x86_64-unknown-linux-gnu.tar.gz [00:01:09] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:35] Updating git repository `https://github.com/Zoxc/rayon.git` [00:01:36] Updating git repository `https://github.com/Zoxc/context-rs.git` [00:01:37] Updating git repository `https://github.com/Zoxc/scoped-tls.git` [00:01:38] Downloading libc v0.2.40 [00:01:38] Downloading serde_derive v1.0.37 [00:01:38] Downloading cmake v0.1.29 [00:01:38] Downloading petgraph v0.4.12 --- [00:06:04] Compiling scopeguard v0.3.3 [00:06:04] Compiling memoffset v0.1.0 [00:06:04] Compiling either v1.5.0 [00:06:04] Compiling lazy_static v1.0.0 [00:06:05] Compiling scoped-tls v0.1.0 (https://github.com/Zoxc/scoped-tls.git#0327b5c7) [00:06:05] Compiling scoped-tls v0.1.1 [00:06:05] Compiling cc v1.0.9 [00:06:06] Compiling unicode-width v0.1.4 [00:06:06] Compiling bitflags v1.0.1 --- [00:06:26] Compiling rand v0.4.2 [00:06:28] Compiling num_cpus v1.8.0 [00:06:34] Compiling atty v0.2.8 [00:06:34] Compiling rustc_cratesio_shim v0.0.0 (file:///checkout/src/librustc_cratesio_shim) [00:06:34] Compiling context v2.0.0 (https://github.com/Zoxc/context-rs.git#f932ce27) [00:06:35] Compiling rayon-core v1.3.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:06:39] Compiling miniz-sys v0.1.10 [00:06:41] Compiling humantime v1.1.1 [00:06:41] Compiling ena v0.9.2 [00:06:42] Compiling jobserver v0.1.11 --- [00:06:53] Compiling rls-data v0.15.0 [00:06:53] Compiling crossbeam-channel v0.1.2 [00:06:53] Compiling flate2 v1.0.1 [00:06:54] Compiling backtrace v0.3.5 [00:07:02] Compiling rayon v0.9.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:07:09] Compiling syntax_pos v0.0.0 (file:///checkout/src/libsyntax_pos) [00:07:09] Compiling arena v0.0.0 (file:///checkout/src/libarena) [00:07:14] Compiling rustc_errors v0.0.0 (file:///checkout/src/librustc_errors) [00:09:11] Compiling proc_macro v0.0.0 (file:///checkout/src/libproc_macro) --- [00:31:00] Compiling lazy_static v0.2.11 [00:31:00] Compiling scopeguard v0.3.3 [00:31:00] Compiling memoffset v0.1.0 [00:31:01] Compiling either v1.5.0 [00:31:01] Compiling scoped-tls v0.1.0 (https://github.com/Zoxc/scoped-tls.git#0327b5c7) [00:31:02] Compiling serialize v0.0.0 (file:///checkout/src/libserialize) [00:31:02] Compiling cc v1.0.9 [00:31:06] Compiling unicode-width v0.1.4 [00:31:07] Compiling scoped-tls v0.1.1 --- [00:31:19] Compiling coco v0.3.4 [00:31:20] Compiling rand v0.4.2 [00:31:21] Compiling num_cpus v1.8.0 [00:31:24] Compiling atty v0.2.8 [00:31:24] Compiling context v2.0.0 (https://github.com/Zoxc/context-rs.git#f932ce27) [00:31:26] Compiling rayon-core v1.3.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:31:29] Compiling backtrace-sys v0.1.16 [00:31:30] Compiling rustc_cratesio_shim v0.0.0 (file:///checkout/src/librustc_cratesio_shim) [00:31:31] Compiling humantime v1.1.1 [00:31:31] Compiling ena v0.9.2 --- [00:31:40] Compiling rls-data v0.15.0 [00:31:40] Compiling crossbeam-channel v0.1.2 [00:31:42] Compiling flate2 v1.0.1 [00:31:43] Compiling backtrace v0.3.5 [00:31:48] Compiling rayon v0.9.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:31:59] Compiling syntax_pos v0.0.0 (file:///checkout/src/libsyntax_pos) [00:31:59] Compiling arena v0.0.0 (file:///checkout/src/libarena) [00:32:03] Compiling rustc_errors v0.0.0 (file:///checkout/src/librustc_errors) [00:33:35] Compiling proc_macro v0.0.0 (file:///checkout/src/libproc_macro) --- [00:58:48] Compiling memoffset v0.1.0 [00:58:48] Compiling scopeguard v0.3.3 [00:58:48] Compiling either v1.5.0 [00:58:49] Compiling lazy_static v1.0.0 [00:58:49] Compiling scoped-tls v0.1.0 (https://github.com/Zoxc/scoped-tls.git#0327b5c7) [00:58:49] Compiling unicode-width v0.1.4 [00:58:49] Compiling scoped-tls v0.1.1 [00:58:49] Compiling bitflags v1.0.1 [00:58:49] Compiling termcolor v0.3.6 --- [00:58:50] Compiling rand v0.4.2 [00:58:51] Compiling num_cpus v1.8.0 [00:58:52] Compiling atty v0.2.8 [00:58:52] Compiling ena v0.9.2 [00:58:52] Compiling context v2.0.0 (https://github.com/Zoxc/context-rs.git#f932ce27) [00:58:54] Compiling parking_lot_core v0.2.13 [00:58:54] Compiling rand v0.3.22 [00:58:55] Compiling parking_lot v0.4.8 [00:58:55] Compiling parking_lot v0.5.4 [00:58:55] Compiling parking_lot v0.5.4 [00:58:56] Compiling crossbeam-channel v0.1.2 [00:58:57] Compiling rayon-core v1.3.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:58:59] Compiling rayon v0.9.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:59:08] Compiling syntax_pos v0.0.0 (file:///checkout/src/libsyntax_pos) [00:59:11] Compiling rustc_errors v0.0.0 (file:///checkout/src/librustc_errors) [00:59:14] Compiling syntax v0.0.0 (file:///checkout/src/libsyntax) [00:59:46] Documenting proc_macro v0.0.0 (file:///checkout/src/libproc_macro) [00:59:46] Documenting proc_macro v0.0.0 (file:///checkout/src/libproc_macro) [00:59:49] warning: [cfg] cannot be resolved, ignoring it... [00:59:49] [00:59:49] warning: [Experimental] cannot be resolved, ignoring it... [00:59:49] [00:59:50] warning: [Garbage] cannot be resolved, ignoring it... [00:59:50] warning: [flat_map] cannot be resolved, ignoring it... [00:59:50] [00:59:51] Finished release [optimized] target(s) in 62.41 secs [00:59:51] Documenting stage2 compiler (x86_64-unknown-linux-gnu) --- [01:11:36] .................................................................................................... [01:12:13] .....................................................................ii............................. [01:13:01] ..............................test [run-pass] run-pass/rustc-rust-log.rs has been running for over 60 seconds [01:13:03] test [run-pass] run-pass/saturating-float-casts.rs has been running for over 60 seconds [01:13:37] ..i....................................................i.ii........... [01:14:37] .............................................................................................iiiiiii [01:16:02] .................................................................................................... [01:16:32] .................................................................................................... [01:16:32] .................................................................................................... No output has been received in the last 30m0s, this potentially indicates a stalled build or something wrong with the build itself. Check the details on how to adjust your build configuration on: https://docs.travis-ci.com/user/common-build-problems/#Build-times-out-because-no-output-was-received The build has been terminated ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:53:08] ...........i........................................................................................ [00:53:16] .................................................................................................... [00:53:25] .................................................................................................... [00:53:35] .................................................................................................... [00:53:44] .....F......................................................................................F....... [00:54:04] ....i............................................................................................... [00:54:12] ........i..ii....................................................................................... [00:54:22] .................................................................................................... [00:54:30] .................................................................................................... --- [00:55:18] failures: [00:55:18] [00:55:18] ---- [compile-fail] compile-fail/issue-43105.rs stdout ---- [00:55:18] [00:55:18] error: /checkout/src/test/compile-fail/issue-43105.rs:13: unexpected error: '13:17: 13:22: calls in constants are limited to constant functions, tuple structs and tuple variants [E0015]' [00:55:18] [00:55:18] error: /checkout/src/test/compile-fail/issue-43105.rs:13: expected error not found: calls in constants are limited to constant functions, struct and enum constructors [00:55:18] [00:55:18] error: 1 unexpected errors found, 1 expected errors not found [00:55:18] status: exit code: 101 [00:55:18] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/compile-fail/issue-43105.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/compile-fail" "--target=x86_64-unknown-linux-gnu" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/compile-fail/issue-43105.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-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/compile-fail/issue-43105.stage2-x86_64-unknown-linux-gnu.aux" "-A" "unused" [00:55:18] unexpected errors (from JSON output): [ [00:55:18] Error { [00:55:18] line_num: 13, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] ), [00:55:18] pile-fail/issue32829.rs:45: expected error not found: calls in statics are limited to constant functions, struct and enum [00:55:18] [00:55:18] error: /checkout/src/test/compile-fail/issue32829.rs:69: expected error not found: calls in statics are limited to constant functions, struct and enum [00:55:18] [00:55:18] error: 3 unexpected errors found, 3 expected errors not found [00:55:18] status: exit code: 101 [00:55:18] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/compile-fail/issue32829.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/compile-fail" "--target=x86_64-unknown-linux-gnu" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/compile-fail/issue32829.stage2-x86_64-unknown-linux-gnu" "-Crpath" "-O" "-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/compile-fail/issue32829.stage2-x86_64-unknown-linux-gnu.aux" "-A" "unused" [00:55:18] unexpected errors (from JSON output): [ [00:55:18] Error { [00:55:18] line_num: 21, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] ), [00:55:18] msg: "21:9: 21:18: calls in constants are limited to constant functions, tuple structs and tuple variants [E0015]" [00:55:18] Error { [00:55:18] line_num: 45, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] Error [00:55:18] ), [00:55:18] msg: "45:9: 45:18: calls in statics are limited to constant functions, tuple structs and tuple variants [E0015]" [00:55:18] Error { [00:55:18] line_num: 69, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] Error [00:55:18] ), [00:55:18] msg: "69:9: 69:18: calls in statics are limited to constant functions, tuple structs and tuple variants [E0015]" [00:55:18] ] [00:55:18] [00:55:18] not found errors (from test file): [ [00:55:18] Error { [00:55:18] Error { [00:55:18] line_num: 21, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] ), [00:55:18] msg: "calls in constants are limited to constant functions, struct and enum" [00:55:18] Error { [00:55:18] line_num: 45, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] Error [00:55:18] ), [00:55:18] msg: "calls in statics are limited to constant functions, struct and enum" [00:55:18] Error { [00:55:18] line_num: 69, [00:55:18] kind: Some( [00:55:18] Error [00:55:18] Error [00:55:18] ), [00:55:18] msg: "calls in statics are limited to constant functions, struct and enum" [00:55:18] ] [00:55:18] [00:55:18] thread '[compile-fail] compile-fail/issue32829.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:1254:13 [00:55:18] --- [00:55:18] [00:55:18] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [00:55:18] [00:55:18] [00:55:18] 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/compile-fail" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/compile-fail" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "compile-fail" "--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 -Zunstable-options " "--target-rustcflags" "-Crpath -O -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:55:18] [00:55:18] [00:55:18] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [00:55:18] Build completed unsuccessfully in 0:15:48 [00:55:18] Build completed unsuccessfully in 0:15:48 [00:55:18] Makefile:58: recipe for target 'check' failed [00:55:18] make: *** [check] Error 1 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:1625b5ff $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain travis_time:start:test_codegen Check compiletest suite=codegen mode=codegen (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [01:04:23] [01:04:23] running 75 tests [01:04:28] i...i..ii....i.............ii.........iii......i..i...i...ii..i..i..ii..... [01:04:28] [01:04:28] finished in 4.508 [01:04:28] travis_fold:end:test_codegen --- travis_time:start:test_debuginfo Check compiletest suite=debuginfo mode=debuginfo-gdb (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [01:04:56] [01:04:56] running 109 tests [01:05:10] iiii.......i..i........i..i.i.............i..........iiii...........i...i..........ii.i.i.......ii.. [01:05:12] test result: ok. 85 passed; 0 failed; 24 ignored; 0 measured; 0 filtered out [01:05:12] [01:05:12] finished in 15.716 [01:05:12] travis_fold:end:test_debuginfo --- [01:35:13] travis_fold:end:stage0-linkchecker [01:35:13] travis_time:end:stage0-linkchecker:start=1523998970564516326,finish=1523998973509004649,duration=2944488323 [01:35:16] std/intrinsics/fn.va_end.html:2: broken link - std/intrinsics/fn.va_start [01:35:16] std/intrinsics/fn.va_end.html:3: broken link - std/intrinsics/fn.va_copy [01:35:16] std/intrinsics/fn.va_start.html:2: broken link - std/intrinsics/fn.va_arg [01:35:16] std/intrinsics/index.html:1859: broken link - std/intrinsics/fn.va_start [01:35:16] std/intrinsics/index.html:1860: broken link - std/intrinsics/fn.va_copy [01:35:16] std/intrinsics/index.html:1868: broken link - std/intrinsics/fn.va_arg [01:35:25] core/intrinsics/fn.va_end.html:2: broken link - core/intrinsics/fn.va_start [01:35:25] core/intrinsics/fn.va_end.html:3: broken link - core/intrinsics/fn.va_copy [01:35:25] core/intrinsics/fn.va_start.html:2: broken link - core/intrinsics/fn.va_arg [01:35:25] core/intrinsics/index.html:1852: broken link - core/intrinsics/fn.va_start [01:35:25] core/intrinsics/index.html:1853: broken link - core/intrinsics/fn.va_copy [01:35:25] core/intrinsics/index.html:1861: broken link - core/intrinsics/fn.va_arg [01:35:31] thread 'main' panicked at 'found some broken links', tools/linkchecker/main.rs:49:9 [01:35:31] [01:35:31] [01:35:31] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/linkchecker" "/checkout/obj/build/x86_64-unknown-linux-gnu/doc" [01:35:31] expected success, got: exit code: 101 [01:35:31] expected success, got: exit code: 101 [01:35:31] [01:35:31] [01:35:31] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [01:35:31] Build completed unsuccessfully in 0:49:53 [01:35:31] make: *** [check] Error 1 [01:35:31] Makefile:58: recipe for target 'check' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:073b6b40 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain ############################################################# 85.8% ######################################################################## 100.0% [00:01:07] extracting /checkout/obj/build/cache/2018-04-04/cargo-beta-x86_64-unknown-linux-gnu.tar.gz [00:01:11] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:29] Updating git repository `https://github.com/Zoxc/rayon.git` [00:01:39] Updating git repository `https://github.com/Zoxc/context-rs.git` [00:01:47] Updating git repository `https://github.com/Zoxc/scoped-tls.git` [00:01:52] Downloading filetime v0.1.15 [00:01:52] Downloading toml v0.4.5 [00:01:52] Downloading time v0.1.39 [00:01:52] Downloading libc v0.2.40 --- [00:05:11] Compiling lazy_static v0.2.11 [00:05:12] Compiling memoffset v0.1.0 [00:05:12] Compiling scopeguard v0.3.3 [00:05:12] Compiling either v1.5.0 [00:05:12] Compiling scoped-tls v0.1.0 (https://github.com/Zoxc/scoped-tls.git#0327b5c7) [00:05:13] Compiling serialize v0.0.0 (file:///checkout/src/libserialize) [00:05:14] Compiling unicode-width v0.1.4 [00:05:14] Compiling cc v1.0.9 [00:05:14] Compiling scoped-tls v0.1.1 --- [00:05:30] Compiling rand v0.4.2 [00:05:32] Compiling num_cpus v1.8.0 [00:05:34] Compiling atty v0.2.8 [00:05:34] Compiling rustc_cratesio_shim v0.0.0 (file:///checkout/src/librustc_cratesio_shim) [00:05:34] Compiling context v2.0.0 (https://github.com/Zoxc/context-rs.git#f932ce27) [00:05:35] Compiling rayon-core v1.3.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:05:37] Compiling miniz-sys v0.1.10 [00:05:38] Compiling backtrace-sys v0.1.16 [00:05:38] Compiling ena v0.9.2 [00:05:39] Compiling jobserver v0.1.11 --- [00:05:46] Compiling parking_lot v0.5.4 [00:05:47] Compiling crossbeam-channel v0.1.2 [00:05:47] Compiling flate2 v1.0.1 [00:05:50] Compiling backtrace v0.3.5 [00:05:53] Compiling rayon v0.9.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:05:58] Compiling syntax_pos v0.0.0 (file:///checkout/src/libsyntax_pos) [00:05:58] Compiling arena v0.0.0 (file:///checkout/src/libarena) [00:06:02] Compiling rustc_errors v0.0.0 (file:///checkout/src/librustc_errors) [00:07:25] Compiling rustc_const_math v0.0.0 (file:///checkout/src/librustc_const_math) --- [00:23:04] Compiling memoffset v0.1.0 [00:23:04] Compiling scopeguard v0.3.3 [00:23:04] Compiling either v1.5.0 [00:23:04] Compiling lazy_static v1.0.0 [00:23:05] Compiling scoped-tls v0.1.0 (https://github.com/Zoxc/scoped-tls.git#0327b5c7) [00:23:05] Compiling unicode-width v0.1.4 [00:23:05] Compiling cc v1.0.9 [00:23:05] Compiling scoped-tls v0.1.1 [00:23:06] Compiling termcolor v0.3.6 --- [00:23:19] Compiling rand v0.4.2 [00:23:20] Compiling num_cpus v1.8.0 [00:23:24] Compiling atty v0.2.8 [00:23:24] Compiling rustc_cratesio_shim v0.0.0 (file:///checkout/src/librustc_cratesio_shim) [00:23:24] Compiling context v2.0.0 (https://github.com/Zoxc/context-rs.git#f932ce27) [00:23:24] Compiling rayon-core v1.3.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:23:26] Compiling backtrace-sys v0.1.16 [00:23:26] Compiling humantime v1.1.1 [00:23:26] Compiling crossbeam-epoch v0.2.0 [00:23:27] Compiling ena v0.9.2 --- [00:23:32] Compiling parking_lot v0.5.4 [00:23:33] Compiling rls-data v0.15.0 [00:23:33] Compiling crossbeam-channel v0.1.2 [00:23:33] Compiling flate2 v1.0.1 [00:23:39] Compiling rayon v0.9.0 (https://github.com/Zoxc/rayon.git?branch=fiber#c258be90) [00:23:41] Compiling rustc_data_structures v0.0.0 (file:///checkout/src/librustc_data_structures) [00:23:44] Compiling syntax_pos v0.0.0 (file:///checkout/src/libsyntax_pos) [00:23:44] Compiling arena v0.0.0 (file:///checkout/src/libarena) [00:23:46] Compiling rustc_errors v0.0.0 (file:///checkout/src/librustc_errors) [00:23:46] Compiling rustc_errors v0.0.0 (file:///checkout/src/librustc_errors) [00:24:36] Compiling proc_macro v0.0.0 (file:///checkout/src/libproc_macro) [00:24:36] Compiling rustc_const_math v0.0.0 (file:///checkout/src/librustc_const_math) [00:24:52] Compiling syntax_ext v0.0.0 (file:///checkout/src/libsyntax_ext) [00:28:55] *** Error in `/checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc': free(): invalid pointer: 0x000055841d82ad00 *** [00:28:55] ======= Backtrace: ========= [00:28:55] /lib/x86_64-linux-gnu/libc.so.6(+0x777e5)[0x7f0cac4c97e5] [00:28:55] /lib/x86_64-linux-gnu/libc.so.6(+0x8037a)[0x7f0cac4d237a] [00:28:55] /lib/x86_64-linux-gnu/libc.so.6(cfree+0x4c)[0x7f0cac4d653c] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x1a210b)[0x7f0caccd610b] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x69b3c)[0x7f0cacb9db3c] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xdc8ad)[0x7f0cacc108ad] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xda5e2)[0x7f0cacc0e5e2] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xec11b)[0x7f0cacc2011b] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x112124)[0x7f0cacc46124] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xc9e69)[0x7f0cacbfde69] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xf6afc)[0x7f0cacc2aafc] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xcce25)[0x7f0cacc00e25] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x10f929)[0x7f0cacc43929] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xcc965)[0x7f0cacc00965] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(_ZN12rustc_driver6driver13compile_input17h088a14e41e52879dE+0x30b)[0x7f0cacc43ecb] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x1ff7da)[0x7f0cacd337da] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0xcc4e5)[0x7f0cacc004e5] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x170825)[0x7f0cacca4825] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(+0x1fc8d7)[0x7f0cacd308d7] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/librustc_driver-703511c3dbac526d.so(_ZN12rustc_driver4main17h6c0e17c06f5d6db2E+0xb)[0x7f0cacd3da3b] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc(+0xe33)[0x558410ca0e33] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/libstd-a90f79f127a6fbce.so(rust_metadata_std_a06dcf7f65a7362a73628b67d2d8d151+0x58b03)[0x7f0cac874b03] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/libstd-a90f79f127a6fbce.so(__rust_maybe_catch_panic+0x1a)[0x7f0cac8b814a] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/libstd-a90f79f127a6fbce.so(rust_metadata_std_a06dcf7f65a7362a73628b67d2d8d151+0x589f8)[0x7f0cac8749f8] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/../lib/libstd-a90f79f127a6fbce.so(_ZN3std2rt19lang_start_internal17h66ba73d2c960fe5aE+0xd1)[0x7f0cac88a451] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc(+0xe94)[0x558410ca0e94] [00:28:55] /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf0)[0x7f0cac472830] [00:28:55] /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc(+0xd29)[0x558410ca0d29] [00:28:55] ======= Memory map: ======== [00:28:55] 558410ca0000-558410ca2000 r-xp 00000000 08:01 801822 /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc [00:28:55] 558410ea1000-558410ea2000 r--p 00001000 08:01 801822 /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc [00:28:55] 558410ea2000-558410ea3000 rw-p 00002000 08:01 801822 /checkout/obj/build/x86_64-unknown-linux-gnu/stage1/bin/rustc [00:28:55] 5584129e5000-55843388a000 rw-p 00000000 00:00 0 [heap] [00:28:55] 7ece68000000-7ece69bd6000 rw-p 00000000 00:00 0 [00:28:55] 7ece69bd6000-7ece6c000000 ---p 00000000 00:00 0 [00:28:55] 7ece6c000000-7ece6c021000 rw-p 00000000 00:00 0 [00:28:55] 7ece6c021000-7ece70000000 ---p 00000000 00:00 0 [00:28:55] 7ece70000000-7ece73392000 rw-p 00000000 00:00 0 [00:28:55] 7ece73392000-7ece74000000 ---p 00000000 00:00 0 [00:28:55] 7ece74000000-7ece78417000 rw-p 00000000 00:00 0 [00:28:55] 7ece78417000-7ece7c000000 ---p 00000000 00:00 0 [00:28:55] 7ece7c000000-7ece7f5be000 rw-p 00000000 00:00 0 [00:28:55] 7ece7f5be000-7ece80000000 ---p 00000000 00:00 0 [00:28:55] 7ece80000000-7ece84000000 rw-p 00000000 00:00 0 [00:28:55] 7ece88000000-7ece8b612000 rw-p 00000000 00:00 0 [00:28:55] 7ece8b612000-7ece8c000000 ---p 00000000 00:00 0 [00:28:55] 7ece90000000-7ece94000000 rw-p 00000000 00:00 0 [00:28:55] 7ece98000000-7ecea0000000 rw-p 00000000 00:00 0 [00:28:55] 7ecea0000000-7ecea3feb000 rw-p 00000000 00:00 0 [00:28:55] 7ecea3feb000-7ecea4000000 ---p 00000000 00:00 0 [00:28:55] 7ecea4000000-7ecea494c000 rw-p 00000000 00:00 0 [00:28:55] 7ecea494c000-7ecea8000000 ---p 00000000 00:00 0 [00:28:55] 7ecea8000000-7eceabfde000 rw-p 00000000 00:00 0 [00:28:55] 7eceabfde000-7eceac000000 ---p 00000000 00:00 0 [00:28:55] 7eceac000000-7eceac203000 rw-p 00000000 00:00 0 [00:28:55] 7eceac203000-7eceb0000000 ---p 00000000 00:00 0 [00:28:55] 7eceb0000000-7eceb21d6000 rw-p 00000000 00:00 0 [00:28:55] 7eceb21d6000-7eceb4000000 ---p 00000000 00:00 0 [00:28:55] 7eceb4000000-7eceb5a81000 rw-p 00000000 00:00 0 [00:28:55] 7eceb5a81000-7eceb8000000 ---p 00000000 00:00 0 [00:28:55] 7eceb8000000-7ecebbebb000 rw-p 00000000 00:00 0 [00:28:55] 7ecebbebb000-7ecebc000000 ---p 00000000 00:00 0 [00:28:55] 7ecebc000000-7ecec0000000 rw-p 00000000 00:00 0 [00:28:55] 7ecec0000000-7ecec4000000 rw-p 00000000 00:00 0 [00:28:55] 7ecec4000000-7ecec8000000 rw-p 00000000 00:00 0 [00:28:55] 7ecec8000000-7ececc000000 rw-p 00000000 00:00 0 [00:28:55] 7ececc000000-7ececff91000 rw-p 00000000 00:00 0 [00:28:55] 7ececff91000-7eced0000000 ---p 00000000 00:00 0 [00:28:55] 7eced0000000-7eced0021000 rw-p 00000000 00:00 0 [00:28:55] 7eced0021000-7eced4000000 ---p 00000000 00:00 0 [00:28:55] 7eced4000000-7eced4021000 rw-p 00000000 00:00 0 [00:28:55] 7eced4021000-7eced8000000 ---p 00000000 00:00 0 [00:28:55] 7eced8000000-7ecedc000000 rw-p 00000000 00:00 0 [00:28:55] 7ecedffff000-7ecef0000000 rw-p 00000000 00:00 0 [00:28:55] 7ecef0000000-7ecef3f87000 rw-p 00000000 00:00 0 [00:28:55] 7ecef3f87000-7ecef4000000 ---p 00000000 00:00 0 [00:28:55] 7ecef8000000-7ecefc000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf00000000-7ecf04000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf04000000-7ecf07fff000 rw-p 00000000 00:00 0 [00:28:55] 7ecf07fff000-7ecf08000000 ---p 00000000 00:00 0 [00:28:55] 7ecf08000000-7ecf0bee1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf0bee1000-7ecf0c000000 ---p 00000000 00:00 0 [00:28:55] 7ecf0c000000-7ecf10000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf10000000-7ecf13bf1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf13bf1000-7ecf14000000 ---p 00000000 00:00 0 [00:28:55] 7ecf157fe000-7ecf17fff000 rw-p 00000000 00:00 0 [00:28:55] 7ecf20000000-7ecf24000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf249f8000-7ecf26ff9000 rw-p 00000000 00:00 0 [00:28:55] 7ecf2cffa000-7ecf34ffb000 rw-p 00000000 00:00 0 [00:28:55] 7ecf34fff000-7ecf38000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf38000000-7ecf3bfb5000 rw-p 00000000 00:00 0 [00:28:55] 7ecf3bfb5000-7ecf3c000000 ---p 00000000 00:00 0 [00:28:55] 7ecf3dffe000-7ecf44000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf44000000-7ecf48000000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4988e000-7ecf4988f000 ---p 00000000 00:00 0 [00:28:55] 7ecf4988f000-7ecf49a8f000 rw-p 00000000 00:00 0 [00:28:55] 7ecf49a8f000-7ecf49a90000 ---p 00000000 00:00 0 [00:28:55] 7ecf49a90000-7ecf4aa90000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4aa90000-7ecf4aa91000 ---p 00000000 00:00 0 [00:28:55] 7ecf4aa91000-7ecf4ba91000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4ba91000-7ecf4ba92000 ---p 00000000 00:00 0 [00:28:55] 7ecf4ba92000-7ecf4ca92000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4ca92000-7ecf4ca93000 ---p 00000000 00:00 0 [00:28:55] 7ecf4ca93000-7ecf4da93000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4da93000-7ecf4da94000 ---p 00000000 00:00 0 [00:28:55] 7ecf4da94000-7ecf4ea94000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4ea94000-7ecf4ea95000 ---p 00000000 00:00 0 [00:28:55] 7ecf4ea95000-7ecf4fa95000 rw-p 00000000 00:00 0 [00:28:55] 7ecf4fa95000-7ecf4fa96000 ---p 00000000 00:00 0 [00:28:55] 7ecf4fa96000-7ecf50a96000 rw-p 00000000 00:00 0 [00:28:55] 7ecf50a96000-7ecf50a97000 ---p 00000000 00:00 0 [00:28:55] 7ecf50a97000-7ecf51a97000 rw-p 00000000 00:00 0 [00:28:55] 7ecf51a97000-7ecf51a98000 ---p 00000000 00:00 0 [00:28:55] 7ecf51a98000-7ecf52a98000 rw-p 00000000 00:00 0 [00:28:55] 7ecf52a98000-7ecf52a99000 ---p 00000000 00:00 0 [00:28:55] 7ecf52a99000-7ecf53a99000 rw-p 00000000 00:00 0 [00:28:55] 7ecf53a99000-7ecf53a9a000 ---p 00000000 00:00 0 [00:28:55] 7ecf53a9a000-7ecf54a9a000 rw-p 00000000 00:00 0 [00:28:55] 7ecf54a9a000-7ecf54a9b000 ---p 00000000 00:00 0 [00:28:55] 7ecf54a9b000-7ecf55a9b000 rw-p 00000000 00:00 0 [00:28:55] 7ecf55a9b000-7ecf55a9c000 ---p 00000000 00:00 0 [00:28:55] 7ecf55a9c000-7ecf56a9c000 rw-p 00000000 00:00 0 [00:28:55] 7ecf56a9c000-7ecf56a9d000 ---p 00000000 00:00 0 [00:28:55] 7ecf56a9d000-7ecf57a9d000 rw-p 00000000 00:00 0 [00:28:55] 7ecf57a9d000-7ecf57a9e000 ---p 00000000 00:00 0 [00:28:55] 7ecf57a9e000-7ecf58a9e000 rw-p 00000000 00:00 0 [00:28:55] 7ecf58a9e000-7ecf58a9f000 ---p 00000000 00:00 0 [00:28:55] 7ecf58a9f000-7ecf59a9f000 rw-p 00000000 00:00 0 [00:28:55] 7ecf59a9f000-7ecf59aa0000 ---p 00000000 00:00 0 [00:28:55] 7ecf59aa0000-7ecf5aaa0000 rw-p 00000000 00:00 0 [00:28:55] 7ecf5aaa0000-7ecf5aaa1000 ---p 00000000 00:00 0 [00:28:55] 7ecf5aaa1000-7ecf5baa1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf5baa1000-7ecf5baa2000 ---p 00000000 00:00 0 [00:28:55] 7ecf5baa2000-7ecf5caa2000 rw-p 00000000 00:00 0 [00:28:55] 7ecf5caa2000-7ecf5caa3000 ---p 00000000 00:00 0 [00:28:55] 7ecf5caa3000-7ecf5daa3000 rw-p 00000000 00:00 0 [00:28:55] 7ecf5daa3000-7ecf5daa4000 ---p 00000000 00:00 0 [00:28:55] 7ecf5daa4000-7ecf5eaa4000 rw-p 00000000 00:00 0 [00:28:55] 7ecf5eaa4000-7ecf5eaa5000 ---p 00000000 00:00 0 [00:28:55] 7ecf5eaa5000-7ecf5faa5000 rw-p 00000000 00:00 0 [00:28:55] 7ecf5faa5000-7ecf5faa6000 ---p 00000000 00:00 0 [00:28:55] 7ecf5faa6000-7ecf60aa6000 rw-p 00000000 00:00 0 [00:28:55] 7ecf60aa6000-7ecf60aa7000 ---p 00000000 00:00 0 [00:28:55] 7ecf60aa7000-7ecf61aa7000 rw-p 00000000 00:00 0 [00:28:55] 7ecf61aa7000-7ecf61aa8000 ---p 00000000 00:00 0 [00:28:55] 7ecf61aa8000-7ecf62aa8000 rw-p 00000000 00:00 0 [00:28:55] 7ecf62aa8000-7ecf62aa9000 ---p 00000000 00:00 0 [00:28:55] 7ecf62aa9000-7ecf63aa9000 rw-p 00000000 00:00 0 [00:28:55] 7ecf63aa9000-7ecf63aaa000 ---p 00000000 00:00 0 [00:28:55] 7ecf63aaa000-7ecf64aaa000 rw-p 00000000 00:00 0 [00:28:55] 7ecf64aaa000-7ecf64aab000 ---p 00000000 00:00 0 [00:28:55] 7ecf64aab000-7ecf65aab000 rw-p 00000000 00:00 0 [00:28:55] 7ecf65aab000-7ecf65aac000 ---p 00000000 00:00 0 [00:28:55] 7ecf65aac000-7ecf66aac000 rw-p 00000000 00:00 0 [00:28:55] 7ecf66aac000-7ecf66aad000 ---p 00000000 00:00 0 [00:28:55] 7ecf66aad000-7ecf67aad000 rw-p 00000000 00:00 0 [00:28:55] 7ecf67aad000-7ecf67aae000 ---p 00000000 00:00 0 [00:28:55] 7ecf67aae000-7ecf68aae000 rw-p 00000000 00:00 0 [00:28:55] 7ecf68aae000-7ecf68aaf000 ---p 00000000 00:00 0 [00:28:55] 7ecf68aaf000-7ecf69aaf000 rw-p 00000000 00:00 0 [00:28:55] 7ecf69aaf000-7ecf69ab0000 ---p 00000000 00:00 0 [00:28:55] 7ecf69ab0000-7ecf6aab0000 rw-p 00000000 00:00 0 [00:28:55] 7ecf6aab0000-7ecf6aab1000 ---p 00000000 00:00 0 [00:28:55] 7ecf6aab1000-7ecf6bab1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf6bab1000-7ecf6bab2000 ---p 00000000 00:00 0 [00:28:55] 7ecf6bab2000-7ecf6cab2000 rw-p 00000000 00:00 0 [00:28:55] 7ecf6cab2000-7ecf6cab3000 ---p 00000000 00:00 0 [00:28:55] 7ecf6cab3000-7ecf6dab3000 rw-p 00000000 00:00 0 [00:28:55] 7ecf6dab3000-7ecf6dab4000 ---p 00000000 00:00 0 [00:28:55] 7ecf6dab4000-7ecf6eab4000 rw-p 00000000 00:00 0 [00:28:55] 7ecf6eab4000-7ecf6eab5000 ---p 00000000 00:00 0 [00:28:55] 7ecf6eab5000-7ecf6fab5000 rw-p 00000000 00:00 0 [00:28:55] 7ecf6fab5000-7ecf6fab6000 ---p 00000000 00:00 0 [00:28:55] 7ecf6fab6000-7ecf70ab6000 rw-p 00000000 00:00 0 [00:28:55] 7ecf70ab6000-7ecf70ab7000 ---p 00000000 00:00 0 [00:28:55] 7ecf70ab7000-7ecf71ab7000 rw-p 00000000 00:00 0 [00:28:55] 7ecf71ab7000-7ecf71ab8000 ---p 00000000 00:00 0 [00:28:55] 7ecf71ab8000-7ecf72ab8000 rw-p 00000000 00:00 0 [00:28:55] 7ecf72ab8000-7ecf72ab9000 ---p 00000000 00:00 0 [00:28:55] 7ecf72ab9000-7ecf73ab9000 rw-p 00000000 00:00 0 [00:28:55] 7ecf73ab9000-7ecf73aba000 ---p 00000000 00:00 0 [00:28:55] 7ecf73aba000-7ecf74aba000 rw-p 00000000 00:00 0 [00:28:55] 7ecf74aba000-7ecf74abb000 ---p 00000000 00:00 0 [00:28:55] 7ecf74abb000-7ecf75abb000 rw-p 00000000 00:00 0 [00:28:55] 7ecf75abb000-7ecf75abc000 ---p 00000000 00:00 0 [00:28:55] 7ecf75abc000-7ecf76abc000 rw-p 00000000 00:00 0 [00:28:55] 7ecf76abc000-7ecf76abd000 ---p 00000000 00:00 0 [00:28:55] 7ecf76abd000-7ecf77abd000 rw-p 00000000 00:00 0 [00:28:55] 7ecf77abd000-7ecf77abe000 ---p 00000000 00:00 0 [00:28:55] 7ecf77abe000-7ecf78abe000 rw-p 00000000 00:00 0 [00:28:55] 7ecf78abe000-7ecf78abf000 ---p 00000000 00:00 0 [00:28:55] 7ecf78abf000-7ecf79abf000 rw-p 00000000 00:00 0 [00:28:55] 7ecf79abf000-7ecf79ac0000 ---p 00000000 00:00 0 [00:28:55] 7ecf79ac0000-7ecf7aac0000 rw-p 00000000 00:00 0 [00:28:55] 7ecf7aac0000-7ecf7aac1000 ---p 00000000 00:00 0 [00:28:55] 7ecf7aac1000-7ecf7bac1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf7bac1000-7ecf7bac2000 ---p 00000000 00:00 0 [00:28:55] 7ecf7bac2000-7ecf7cac2000 rw-p 00000000 00:00 0 [00:28:55] 7ecf7cac2000-7ecf7cac3000 ---p 00000000 00:00 0 [00:28:55] 7ecf7cac3000-7ecf7dac3000 rw-p 00000000 00:00 0 [00:28:55] 7ecf7dac3000-7ecf7dac4000 ---p 00000000 00:00 0 [00:28:55] 7ecf7dac4000-7ecf7eac4000 rw-p 00000000 00:00 0 [00:28:55] 7ecf7eac4000-7ecf7eac5000 ---p 00000000 00:00 0 [00:28:55] 7ecf7eac5000-7ecf7fac5000 rw-p 00000000 00:00 0 [00:28:55] 7ecf7fac5000-7ecf7fac6000 ---p 00000000 00:00 0 [00:28:55] 7ecf7fac6000-7ecf80ac6000 rw-p 00000000 00:00 0 [00:28:55] 7ecf80ac6000-7ecf80ac7000 ---p 00000000 00:00 0 [00:28:55] 7ecf80ac7000-7ecf81ac7000 rw-p 00000000 00:00 0 [00:28:55] 7ecf81ac7000-7ecf81ac8000 ---p 00000000 00:00 0 [00:28:55] 7ecf81ac8000-7ecf82ac8000 rw-p 00000000 00:00 0 [00:28:55] 7ecf82ac8000-7ecf82ac9000 ---p 00000000 00:00 0 [00:28:55] 7ecf82ac9000-7ecf83ac9000 rw-p 00000000 00:00 0 [00:28:55] 7ecf83ac9000-7ecf83aca000 ---p 00000000 00:00 0 [00:28:55] 7ecf83aca000-7ecf84aca000 rw-p 00000000 00:00 0 [00:28:55] 7ecf84aca000-7ecf84acb000 ---p 00000000 00:00 0 [00:28:55] 7ecf84acb000-7ecf85acb000 rw-p 00000000 00:00 0 [00:28:55] 7ecf85acb000-7ecf85acc000 ---p 00000000 00:00 0 [00:28:55] 7ecf85acc000-7ecf86acc000 rw-p 00000000 00:00 0 [00:28:55] 7ecf86acc000-7ecf86acd000 ---p 00000000 00:00 0 [00:28:55] 7ecf86acd000-7ecf87acd000 rw-p 00000000 00:00 0 [00:28:55] 7ecf87acd000-7ecf87ace000 ---p 00000000 00:00 0 [00:28:55] 7ecf87ace000-7ecf88ace000 rw-p 00000000 00:00 0 [00:28:55] 7ecf88ace000-7ecf88acf000 ---p 00000000 00:00 0 [00:28:55] 7ecf88acf000-7ecf89acf000 rw-p 00000000 00:00 0 [00:28:55] 7ecf89acf000-7ecf89ad0000 ---p 00000000 00:00 0 [00:28:55] 7ecf89ad0000-7ecf8aad0000 rw-p 00000000 00:00 0 [00:28:55] 7ecf8aad0000-7ecf8aad1000 ---p 00000000 00:00 0 [00:28:55] 7ecf8aad1000-7ecf8bad1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf8bad1000-7ecf8bad2000 ---p 00000000 00:00 0 [00:28:55] 7ecf8bad2000-7ecf8cad2000 rw-p 00000000 00:00 0 [00:28:55] 7ecf8cad2000-7ecf8cad3000 ---p 00000000 00:00 0 [00:28:55] 7ecf8cad3000-7ecf8dad3000 rw-p 00000000 00:00 0 [00:28:55] 7ecf8dad3000-7ecf8dad4000 ---p 00000000 00:00 0 [00:28:55] 7ecf8dad4000-7ecf8ead4000 rw-p 00000000 00:00 0 [00:28:55] 7ecf8ead4000-7ecf8ead5000 ---p 00000000 00:00 0 [00:28:55] 7ecf8ead5000-7ecf8fad5000 rw-p 00000000 00:00 0 [00:28:55] 7ecf8fad5000-7ecf8fad6000 ---p 00000000 00:00 0 [00:28:55] 7ecf8fad6000-7ecf90ad6000 rw-p 00000000 00:00 0 [00:28:55] 7ecf90ad6000-7ecf90ad7000 ---p 00000000 00:00 0 [00:28:55] 7ecf90ad7000-7ecf91ad7000 rw-p 00000000 00:00 0 [00:28:55] 7ecf91ad7000-7ecf91ad8000 ---p 00000000 00:00 0 [00:28:55] 7ecf91ad8000-7ecf92ad8000 rw-p 00000000 00:00 0 [00:28:55] 7ecf92ad8000-7ecf92ad9000 ---p 00000000 00:00 0 [00:28:55] 7ecf92ad9000-7ecf93ad9000 rw-p 00000000 00:00 0 [00:28:55] 7ecf93ad9000-7ecf93ada000 ---p 00000000 00:00 0 [00:28:55] 7ecf93ada000-7ecf94ada000 rw-p 00000000 00:00 0 [00:28:55] 7ecf94ada000-7ecf94adb000 ---p 00000000 00:00 0 [00:28:55] 7ecf94adb000-7ecf95adb000 rw-p 00000000 00:00 0 [00:28:55] 7ecf95adb000-7ecf95adc000 ---p 00000000 00:00 0 [00:28:55] 7ecf95adc000-7ecf96adc000 rw-p 00000000 00:00 0 [00:28:55] 7ecf96adc000-7ecf96add000 ---p 00000000 00:00 0 [00:28:55] 7ecf96add000-7ecf97add000 rw-p 00000000 00:00 0 [00:28:55] 7ecf97add000-7ecf97ade000 ---p 00000000 00:00 0 [00:28:55] 7ecf97ade000-7ecf98ade000 rw-p 00000000 00:00 0 [00:28:55] 7ecf98ade000-7ecf98adf000 ---p 00000000 00:00 0 [00:28:55] 7ecf98adf000-7ecf99adf000 rw-p 00000000 00:00 0 [00:28:55] 7ecf99adf000-7ecf99ae0000 ---p 00000000 00:00 0 [00:28:55] 7ecf99ae0000-7ecf9aae0000 rw-p 00000000 00:00 0 [00:28:55] 7ecf9aae0000-7ecf9aae1000 ---p 00000000 00:00 0 [00:28:55] 7ecf9aae1000-7ecf9bae1000 rw-p 00000000 00:00 0 [00:28:55] 7ecf9bae1000-7ecf9bae2000 ---p 00000000 00:00 0 [00:28:55] 7ecf9bae2000-7ecf9cae2000 rw-p 00000000 00:00 0 [00:28:55] 7ecf9cae2000-7ecf9cae3000 ---p 00000000 00:00 0 [00:28:55] 7ecf9cae3000-7ecf9dae3000 rw-p 00000000 00:00 0 [00:28:55] 7ecf9dae3000-7ecf9dae4000 ---p 00000000 00:00 0 [00:28:55] 7ecf9dae4000-7ecf9eae4000 rw-p 00000000 00:00 0 [00:28:55] 7ecf9eae4000-7ecf9eae5000 ---p 00000000 00:00 0 [00:28:55] 7ecf9eae5000-7ecf9fae5000 rw-p 00000000 00:00 0 [00:28:55] 7ecf9fae5000-7ecf9fae6000 ---p 00000000 00:00 0 [00:28:55] 7ecf9fae6000-7ecfa0ae6000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa0ae6000-7ecfa0ae7000 ---p 00000000 00:00 0 [00:28:55] 7ecfa0ae7000-7ecfa1ae7000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa1ae7000-7ecfa1ae8000 ---p 00000000 00:00 0 [00:28:55] 7ecfa1ae8000-7ecfa2ae8000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa2ae8000-7ecfa2ae9000 ---p 00000000 00:00 0 [00:28:55] 7ecfa2ae9000-7ecfa3ae9000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa3ae9000-7ecfa3aea000 ---p 00000000 00:00 0 [00:28:55] 7ecfa3aea000-7ecfa4aea000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa4aea000-7ecfa4aeb000 ---p 00000000 00:00 0 [00:28:55] 7ecfa4aeb000-7ecfa5aeb000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa5aeb000-7ecfa5aec000 ---p 00000000 00:00 0 [00:28:55] 7ecfa5aec000-7ecfa6aec000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa6aec000-7ecfa6aed000 ---p 00000000 00:00 0 [00:28:55] 7ecfa6aed000-7ecfa7aed000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa7aed000-7ecfa7aee000 ---p 00000000 00:00 0 [00:28:55] 7ecfa7aee000-7ecfa8aee000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa8aee000-7ecfa8aef000 ---p 00000000 00:00 0 [00:28:55] 7ecfa8aef000-7ecfa9aef000 rw-p 00000000 00:00 0 [00:28:55] 7ecfa9aef000-7ecfa9af0000 ---p 00000000 00:00 0 [00:28:55] 7ecfa9af0000-7ecfaaaf0000 rw-p 00000000 00:00 0 [00:28:55] 7ecfaaaf0000-7ecfaaaf1000 ---p 00000000 00:00 0 [00:28:55] 7ecfaaaf1000-7ecfabaf1000 rw-p 00000000 00:00 0 [00:28:55] 7ecfabaf1000-7ecfabaf2000 ---p 00000000 00:00 0 [00:28:55] 7ecfabaf2000-7ecfacaf2000 rw-p 00000000 00:00 0 [00:28:55] 7ecfacaf2000-7ecfacaf3000 ---p 00000000 00:00 0 [00:28:55] 7ecfacaf3000-7ecfadaf3000 rw-p 00000000 00:00 0 [00:28:55] 7ecfadaf3000-7ecfadaf4000 ---p 00000000 00:00 0 [00:28:55] 7ecfadaf4000-7ecfaeaf4000 rw-p 00000000 00:00 0 [00:28:55] 7ecfaeaf4000-7ecfaeaf5000 ---p 00000000 00:00 0 [00:28:55] 7ecfaeaf5000-7ecfafaf5000 rw-p 00000000 00:00 0 [00:28:55] 7ecfafaf5000-7ecfafaf6000 ---p 00000000 00:00 0 [00:28:55] 7ecfafaf6000-7ecfb0af6000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb0af6000-7ecfb0af7000 ---p 00000000 00:00 0 [00:28:55] 7ecfb0af7000-7ecfb1af7000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb1af7000-7ecfb1af8000 ---p 00000000 00:00 0 [00:28:55] 7ecfb1af8000-7ecfb2af8000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb2af8000-7ecfb2af9000 ---p 00000000 00:00 0 [00:28:55] 7ecfb2af9000-7ecfb3af9000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb3af9000-7ecfb3afa000 ---p 00000000 00:00 0 [00:28:55] 7ecfb3afa000-7ecfb4afa000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb4afa000-7ecfb4afb000 ---p 00000000 00:00 0 [00:28:55] 7ecfb4afb000-7ecfb5afb000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb5afb000-7ecfb5afc000 ---p 00000000 00:00 0 [00:28:55] 7ecfb5afc000-7ecfb6afc000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb6afc000-7ecfb6afd000 ---p 00000000 00:00 0 [00:28:55] 7ecfb6afd000-7ecfb7afd000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb7afd000-7ecfb7afe000 ---p 00000000 00:00 0 [00:28:55] 7ecfb7afe000-7ecfb8afe000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb8afe000-7ecfb8aff000 ---p 00000000 00:00 0 [00:28:55] 7ecfb8aff000-7ecfb9aff000 rw-p 00000000 00:00 0 [00:28:55] 7ecfb9aff000-7ecfb9b00000 ---p 00000000 00:00 0 [00:28:55] 7ecfb9b00000-7ecfbab00000 rw-p 00000000 00:00 0 [00:28:55] 7ecfbab00000-7ecfbab01000 ---p 00000000 00:00 0 [00:28:55] 7ecfbab01000-7ecfbbb01000 rw-p 00000000 00:00 0 [00:28:55] 7ecfbbb01000-7ecfbbb02000 ---p 00000000 00:00 0 [00:28:55] 7ecfbbb02000-7ecfbcb02000 rw-p 00000000 00:00 0 [00:28:55] 7ecfbcb02000-7ecfbcb03000 ---p 00000000 00:00 0 [00:28:55] 7ecfbcb03000-7ecfbdb03000 rw-p 00000000 00:00 0 [00:28:55] 7ecfbdb03000-7ecfbdb04000 ---p 00000000 00:00 0 [00:28:55] 7ecfbdb04000-7ecfbeb04000 rw-p 00000000 00:00 0 [00:28:55] 7ecfbeb04000-7ecfbeb05000 ---p 00000000 00:00 0 [00:28:55] 7ecfbeb05000-7ecfbfb05000 rw-p 00000000 00:00 0 [00:28:55] 7ecfbfb05000-7ecfbfb06000 ---p 00000000 00:00 0 [00:28:55] 7ecfbfb06000-7ecfc0b06000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc0b06000-7ecfc0b07000 ---p 00000000 00:00 0 [00:28:55] 7ecfc0b07000-7ecfc1b07000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc1b07000-7ecfc1b08000 ---p 00000000 00:00 0 [00:28:55] 7ecfc1b08000-7ecfc2b08000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc2b08000-7ecfc2b09000 ---p 00000000 00:00 0 [00:28:55] 7ecfc2b09000-7ecfc3b09000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc3b09000-7ecfc3b0a000 ---p 00000000 00:00 0 [00:28:55] 7ecfc3b0a000-7ecfc4b0a000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc4b0a000-7ecfc4b0b000 ---p 00000000 00:00 0 [00:28:55] 7ecfc4b0b000-7ecfc5b0b000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc5b0b000-7ecfc5b0c000 ---p 00000000 00:00 0 [00:28:55] 7ecfc5b0c000-7ecfc6b0c000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc6b0c000-7ecfc6b0d000 ---p 00000000 00:00 0 [00:28:55] 7ecfc6b0d000-7ecfc7b0d000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc7b0d000-7ecfc7b0e000 ---p 00000000 00:00 0 [00:28:55] 7ecfc7b0e000-7ecfc8b0e000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc8b0e000-7ecfc8b0f000 ---p 00000000 00:00 0 [00:28:55] 7ecfc8b0f000-7ecfc9b0f000 rw-p 00000000 00:00 0 [00:28:55] 7ecfc9b0f000-7ecfc9b10000 ---p 00000000 00:00 0 [00:28:55] 7ecfc9b10000-7ecfcab10000 rw-p 00000000 00:00 0 [00:28:55] 7ecfcab10000-7ecfcab11000 ---p 00000000 00:00 0 [00:28:55] 7ecfcab11000-7ecfcbb11000 rw-p 00000000 00:00 0 [00:28:55] 7ecfcbb11000-7ecfcbb12000 ---p 00000000 00:00 0 [00:28:55] 7ecfcbb12000-7ecfccb12000 rw-p 00000000 00:00 0 [00:28:55] 7ecfccb12000-7ecfccb13000 ---p 00000000 00:00 0 [00:28:55] 7ecfccb13000-7ecfcdb13000 rw-p 00000000 00:00 0 [00:28:55] 7ecfcdb13000-7ecfcdb14000 ---p 00000000 00:00 0 [00:28:55] 7ecfcdb14000-7ecfceb14000 rw-p 00000000 00:00 0 [00:28:55] 7ecfceb14000-7ecfceb15000 ---p 00000000 00:00 0 [00:28:55] 7ecfceb15000-7ecfcfb15000 rw-p 00000000 00:00 0 [00:28:55] 7ecfcfb15000-7ecfcfb16000 ---p 00000000 00:00 0 [00:28:55] 7ecfcfb16000-7ecfd0b16000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd0b16000-7ecfd0b17000 ---p 00000000 00:00 0 [00:28:55] 7ecfd0b17000-7ecfd1b17000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd1b17000-7ecfd1b18000 ---p 00000000 00:00 0 [00:28:55] 7ecfd1b18000-7ecfd2b18000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd2b18000-7ecfd2b19000 ---p 00000000 00:00 0 [00:28:55] 7ecfd2b19000-7ecfd3b19000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd3b19000-7ecfd3b1a000 ---p 00000000 00:00 0 [00:28:55] 7ecfd3b1a000-7ecfd4b1a000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd4b1a000-7ecfd4b1b000 ---p 00000000 00:00 0 [00:28:55] 7ecfd4b1b000-7ecfd5b1b000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd5b1b000-7ecfd5b1c000 ---p 00000000 00:00 0 [00:28:55] 7ecfd5b1c000-7ecfd6b1c000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd6b1c000-7ecfd6b1d000 ---p 00000000 00:00 0 [00:28:55] 7ecfd6b1d000-7ecfd7b1d000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd7b1d000-7ecfd7b1e000 ---p 00000000 00:00 0 [00:28:55] 7ecfd7b1e000-7ecfd8b1e000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd8b1e000-7ecfd8b1f000 ---p 00000000 00:00 0 [00:28:55] 7ecfd8b1f000-7ecfd9b1f000 rw-p 00000000 00:00 0 [00:28:55] 7ecfd9b1f000-7ecfd9b20000 ---p 00000000 00:00 0 [00:28:55] 7ecfd9b20000-7ecfdab20000 rw-p 00000000 00:00 0 [00:28:55] 7ecfdab20000-7ecfdab21000 ---p 00000000 00:00 0 [00:28:55] 7ecfdab21000-7ecfdbb21000 rw-p 00000000 00:00 0 [00:28:55] 7ecfdbb21000-7ecfdbb22000 ---p 00000000 00:00 0 [00:28:55] 7ecfdbb22000-7ecfdcb22000 rw-p 00000000 00:00 0 [00:28:55] 7ecfdcb22000-7ecfdcb23000 ---p 00000000 00:00 0 [00:28:55] 7ecfdcb23000-7ecfddb23000 rw-p 00000000 00:00 0 [00:28:55] 7ecfddb23000-7ecfddb24000 ---p 00000000 00:00 0 [00:28:55] 7ecfddb24000-7ecfdeb24000 rw-p 00000000 00:00 0 [00:28:55] 7ecfdeb24000-7ecfdeb25000 ---p 00000000 00:00 0 [00:28:55] 7ecfdeb25000-7ecfdfb25000 rw-p 00000000 00:00 0 [00:28:55] 7ecfdfb25000-7ecfdfb26000 ---p 00000000 00:00 0 [00:28:55] 7ecfdfb26000-7ecfe0b26000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe0b26000-7ecfe0b27000 ---p 00000000 00:00 0 [00:28:55] 7ecfe0b27000-7ecfe1b27000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe1b27000-7ecfe1b28000 ---p 00000000 00:00 0 [00:28:55] 7ecfe1b28000-7ecfe2b28000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe2b28000-7ecfe2b29000 ---p 00000000 00:00 0 [00:28:55] 7ecfe2b29000-7ecfe3b29000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe3b29000-7ecfe3b2a000 ---p 00000000 00:00 0 [00:28:55] 7ecfe3b2a000-7ecfe4b2a000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe4b2a000-7ecfe4b2b000 ---p 00000000 00:00 0 [00:28:55] 7ecfe4b2b000-7ecfe5b2b000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe5b2b000-7ecfe5b2c000 ---p 00000000 00:00 0 [00:28:55] 7ecfe5b2c000-7ecfe6b2c000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe6b2c000-7ecfe6b2d000 ---p 00000000 00:00 0 [00:28:55] 7ecfe6b2d000-7ecfe7b2d000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe7b2d000-7ecfe7b2e000 ---p 00000000 00:00 0 [00:28:55] 7ecfe7b2e000-7ecfe8b2e000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe8b2e000-7ecfe8b2f000 ---p 00000000 00:00 0 [00:28:55] 7ecfe8b2f000-7ecfe9b2f000 rw-p 00000000 00:00 0 [00:28:55] 7ecfe9b2f000-7ecfe9b30000 ---p 00000000 00:00 0 [00:28:55] 7ecfe9b30000-7ecfeab30000 rw-p 00000000 00:00 0 [00:28:55] 7ecfeab30000-7ecfeab31000 ---p 00000000 00:00 0 [00:28:55] 7ecfeab31000-7ecfebb31000 rw-p 00000000 00:00 0 [00:28:55] 7ecfebb31000-7ecfebb32000 ---p 00000000 00:00 0 [00:28:55] 7ecfebb32000-7ecfecb32000 rw-p 00000000 00:00 0 [00:28:55] 7ecfecb32000-7ecfecb33000 ---p 00000000 00:00 0 [00:28:55] 7ecfecb33000-7ecfedb33000 rw-p 00000000 00:00 0 [00:28:55] 7ecfedb33000-7ecfedb34000 ---p 00000000 00:00 0 [00:28:55] 7ecfedb34000-7ecfeeb34000 rw-p 00000000 00:00 0 [00:28:55] 7ecfeeb34000-7ecfeeb35000 ---p 00000000 00:00 0 [00:28:55] 7ecfeeb35000-7ecfefb35000 rw-p 00000000 00:00 0 [00:28:55] 7ecfefb35000-7ecfefb36000 ---p 00000000 00:00 0 [00:28:55] 7ecfefb36000-7ecff0b36000 rw-p 00000000 00:00 0 [00:28:55] 7ecff0b36000-7ecff0b37000 ---p 00000000 00:00 0 [00:28:55] 7ecff0b37000-7ecff1b37000 rw-p 00000000 00:00 0 [00:28:55] 7ecff1b37000-7ecff1b38000 ---p 00000000 00:00 0 [00:28:55] 7ecff1b38000-7ecff2b38000 rw-p 00000000 00:00 0 [00:28:55] 7ecff2b38000-7ecff2b39000 ---p 00000000 00:00 0 [00:28:55] 7ecff2b39000-7ecff3b39000 rw-p 00000000 00:00 0 [00:28:55] 7ecff3b39000-7ecff3b3a000 ---p 00000000 00:00 0 [00:28:55] 7ecff3b3a000-7ecff4b3a000 rw-p 00000000 00:00 0 [00:28:55] 7ecff4b3a000-7ecff4b3b000 ---p 00000000 00:00 0 [00:28:55] 7ecff4b3b000-7ecff5b3b000 rw-p 00000000 00:00 0 [00:28:55] 7ecff5b3b000-7ecff5b3c000 ---p 00000000 00:00 0 [00:28:55] 7ecff5b3c000-7ecff6b3c000 rw-p 00000000 00:00 0 [00:28:55] 7ecff6b3c000-7ecff6b3d000 ---p 00000000 00:00 0 [00:28:55] 7ecff6b3d000-7ecff7b3d000 rw-p 00000000 00:00 0 [00:28:55] 7ecff7b3d000-7ecff7b3e000 ---p 00000000 00:00 0 [00:28:55] 7ecff7b3e000-7ecff8b3e000 rw-p 00000000 00:00 0 [00:28:55] 7ecff8b3e000-7ecff8b3f000 ---p 00000000 00:00 0 [00:28:55] 7ecff8b3f000-7ecff9b3f000 rw-p 00000000 00:00 0 [00:28:55] 7ecff9b3f000-7ecff9b40000 ---p 00000000 00:00 0 [00:28:55] 7ecff9b40000-7ecffab40000 rw-p 00000000 00:00 0 [00:28:55] 7ecffab40000-7ecffab41000 ---p 00000000 00:00 0 [00:28:55] 7ecffab41000-7ecffbb41000 rw-p 00000000 00:00 0 [00:28:55] 7ecffbb41000-7ecffbb42000 ---p 00000000 00:00 0 [00:28:55] 7ecffbb42000-7ecffcb42000 rw-p 00000000 00:00 0 [00:28:55] 7ecffcb42000-7ecffcb43000 ---p 00000000 00:00 0 [00:28:55] 7ecffcb43000-7ecffdb43000 rw-p 00000000 00:00 0 [00:28:55] 7ecffdb43000-7ecffdb44000 ---p 00000000 00:00 0 [00:28:55] 7ecffdb44000-7ecffeb44000 rw-p 00000000 00:00 0 [00:28:55] 7ecffeb44000-7ecffeb45000 ---p 00000000 00:00 0 [00:28:55] 7ecffeb45000-7ecfffb45000 rw-p 00000000 00:00 0 [00:28:55] 7ecfffb45000-7ecfffb46000 ---p 00000000 00:00 0 [00:28:55] 7ecfffb46000-7ed000b46000 rw-p 00000000 00:00 0 [00:28:55] 7ed000b46000-7ed000b47000 ---p 00000000 00:00 0 [00:28:55] 7ed000b47000-7ed001b47000 rw-p 00000000 00:00 0 [00:28:55] 7ed001b47000-7ed001b48000 ---p 00000000 00:00 0 [00:28:55] 7ed001b48000-7ed002b48000 rw-p 00000000 00:00 0 [00:28:55] 7ed002b48000-7ed002b49000 ---p 00000000 00:00 0 [00:28:55] 7ed002b49000-7ed003b49000 rw-p 00000000 00:00 0 [00:28:55] 7ed003b49000-7ed003b4a000 ---p 00000000 00:00 0 [00:28:55] 7ed003b4a000-7ed004b4a000 rw-p 00000000 00:00 0 [00:28:55] 7ed004b4a000-7ed004b4b000 ---p 00000000 00:00 0 [00:28:55] 7ed004b4b000-7ed005b4b000 rw-p 00000000 00:00 0 [00:28:55] 7ed005b4b000-7ed005b4c000 ---p 00000000 00:00 0 [00:28:55] 7ed005b4c000-7ed006b4c000 rw-p 00000000 00:00 0 [00:28:55] 7ed006b4c000-7ed006b4d000 ---p 00000000 00:00 0 [00:28:55] 7ed006b4d000-7ed007b4d000 rw-p 00000000 00:00 0 [00:28:55] 7ed007b4d000-7ed007b4e000 ---p 00000000 00:00 0 [00:28:55] 7ed007b4e000-7ed008b4e000 rw-p 00000000 00:00 0 [00:28:55] 7ed008b4e000-7ed008b4f000 ---p 00000000 00:00 0 [00:28:55] 7ed008b4f000-7ed009b4f000 rw-p 00000000 00:00 0 [00:28:55] 7ed009b4f000-7ed009b50000 ---p 00000000 00:00 0 [00:28:55] 7ed009b50000-7ed00ab50000 rw-p 00000000 00:00 0 [00:28:55] 7ed00ab50000-7ed00ab51000 ---p 00000000 00:00 0 [00:28:55] 7ed00ab51000-7ed00bb51000 rw-p 00000000 00:00 0 [00:28:55] 7ed00bb51000-7ed00bb52000 ---p 00000000 00:00 0 ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:44:41] failures: [00:44:41] [00:44:41] ---- [ui] ui/const-eval/const_signed_pat.rs stdout ---- [00:44:41] [00:44:41] error: ui test compiled successfully! [00:44:41] status: exit code: 0 [00:44:41] command: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/src/test/ui/const-eval/const_signed_pat.rs" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--target=x86_64-unknown-linux-musl" "--error-format" "json" "-Zui-testing" "-C" "prefer-dynamic" "-o" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/const-eval/const_signed_pat.stage2-x86_64-unknown-linux-musl" "-Crpath" "-O" "-Zunstable-options" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-musl/native/rust-test-helpers" "-Clinker=/musl-x86_64/bin/musl-gcc" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/const-eval/const_signed_pat.stage2-x86_64-unknown-linux-musl.aux" "-A" "unused" [00:44:41] ------------------------------------------ [00:44:41] [00:44:41] ------------------------------------------ [00:44:41] stderr: --- [00:44:41] test result: FAILED. 1355 passed; 1 failed; 6 ignored; 0 measured; 0 filtered out [00:44:41] [00:44:41] [00:44:41] [00:44:41] 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-musl/lib" "--rustc-path" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "--src-base" "/checkout/src/test/ui" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui" "--stage-id" "stage2-x86_64-unknown-linux-musl" "--mode" "ui" "--target" "x86_64-unknown-linux-musl" "--host" "x86_64-unknown-linux-gnu" "--llvm-filecheck" "/checkout/obj/build/x86_64-unknown-linux-gnu/llvm/build/bin/FileCheck" "--linker" "/musl-x86_64/bin/musl-gcc" "--host-rustcflags" "-Crpath -O -Zunstable-options " "--target-rustcflags" "-Crpath -O -Zunstable-options -Lnative=/checkout/obj/build/x86_64-unknown-linux-musl/native/rust-test-helpers" "--docck-python" "/usr/bin/python2.7" "--lldb-python" "/usr/bin/python2.7" "--gdb" "/usr/bin/gdb" "--llvm-version" "6.0.0\n" "--cc" "" "--cxx" "" "--cflags" "" "--llvm-components" "" "--llvm-cxxflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--color" "always" [00:44:41] [00:44:41] [00:44:41] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [00:44:41] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test --target x86_64-unknown-linux-musl ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain travis_time:start:test_codegen Check compiletest suite=codegen mode=codegen (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [01:22:06] [01:22:06] running 75 tests [01:22:11] i...i..ii....i.............ii.........iii......i..i...i...ii..i..i..ii..... [01:22:11] [01:22:11] finished in 5.504 [01:22:11] travis_fold:end:test_codegen --- travis_time:start:test_debuginfo Check compiletest suite=debuginfo mode=debuginfo-gdb (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [01:22:48] [01:22:48] running 109 tests [01:23:05] iiii.......i..i........i..i.i.............i..........iiii...........i...i..........ii.i.i.......ii.. [01:23:07] test result: ok. 85 passed; 0 failed; 24 ignored; 0 measured; 0 filtered out [01:23:07] [01:23:07] finished in 18.539 [01:23:07] travis_fold:end:test_debuginfo --- [01:37:35] .................................................................................................... [01:37:35] thread '' panicked at 'explicit panic', liballoc/../liballoc/tests/slice.rs:1305:17 [01:37:35] .................................................................................................... [01:37:35] .................................................................................................... [01:37:35] ..........FF........................................................................................ [01:37:39] failures: [01:37:39] [01:37:39] ---- str::test_str_slicemut_rangetoinclusive_ok stdout ---- [01:37:39] ---- str::test_str_slicemut_rangetoinclusive_ok stdout ---- [01:37:39] thread 'str::test_str_slicemut_rangetoinclusive_ok' panicked at 'byte index 4 is not a char boundary; it is inside 'α' (bytes 3..5) of `abcαβγ`', libcore/str/mod.rs:2268:5 [01:37:39] [01:37:39] failures: [01:37:39] str::test_str_slicemut_rangetoinclusive_notok [01:37:39] str::test_str_slicemut_rangetoinclusive_ok [01:37:39] str::test_str_slicemut_rangetoinclusive_ok [01:37:39] [01:37:39] test result: FAILED. 486 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out [01:37:39] [01:37:39] error: test failed, to rerun pass '--test collectionstests' [01:37:39] [01:37:39] [01:37:39] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "test" "--target" "x86_64-unknown-linux-gnu" "--release" "--locked" "--color" "always" "--features" "panic-unwind jemalloc backtrace" "--manifest-path" "/checkout/src/libstd/Cargo.toml" "-p" "alloc" "--" "--quiet" [01:37:39] [01:37:39] [01:37:39] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [01:37:39] Build completed unsuccessfully in 0:39:30 [01:37:39] Build completed unsuccessfully in 0:39:30 [01:37:39] make: *** [check] Error 1 [01:37:39] Makefile:58: recipe for target 'check' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:1068034c $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:05:27] travis_fold:start:tidy travis_time:start:tidy tidy check [00:05:28] tidy error: /checkout/src/test/compile-fail/issue32829.rs:23: line longer than 100 chars [00:05:28] tidy error: /checkout/src/test/compile-fail/issue32829.rs:47: line longer than 100 chars [00:05:28] tidy error: /checkout/src/test/compile-fail/issue32829.rs:71: line longer than 100 chars [00:05:29] some tidy checks failed [00:05:29] [00:05:29] [00:05:29] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/tidy" "/checkout/src" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "--no-vendor" "--quiet" [00:05:29] [00:05:29] [00:05:29] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test src/tools/tidy [00:05:29] Build completed unsuccessfully in 0:01:56 [00:05:29] Build completed unsuccessfully in 0:01:56 [00:05:29] Makefile:79: recipe for target 'tidy' failed [00:05:29] make: *** [tidy] Error 1 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:23d1be28 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:04:31] travis_fold:start:tidy travis_time:start:tidy tidy check [00:04:32] tidy error: /checkout/src/libsyntax/parse/parser.rs:2321: line longer than 100 chars [00:04:32] tidy error: /checkout/src/librustc/hir/lowering.rs:3595: line longer than 100 chars [00:04:33] some tidy checks failed [00:04:33] [00:04:33] [00:04:33] command did not execute successfully: "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-tools-bin/tidy" "/checkout/src" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo" "--no-vendor" "--quiet" [00:04:33] [00:04:33] [00:04:33] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test src/tools/tidy [00:04:33] Build completed unsuccessfully in 0:01:43 [00:04:33] Build completed unsuccessfully in 0:01:43 [00:04:33] make: *** [tidy] Error 1 [00:04:33] Makefile:79: recipe for target 'tidy' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:0724da57 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:18:18] Compiling rustc_trans v0.0.0 (file:///checkout/src/librustc_trans) [00:18:18] Compiling cc v1.0.9 [00:18:18] Compiling num_cpus v1.8.0 [00:18:21] Compiling rustc_llvm v0.0.0 (file:///checkout/src/librustc_llvm) [00:18:30] error: could not find native static library `Polly`, perhaps an -L flag is missing? [00:18:30] error: aborting due to previous error [00:18:30] [00:18:30] error: Could not compile `rustc_llvm`. [00:18:30] [00:18:30] [00:18:30] Caused by: [00:18:30] process didn't exit successfully: `/checkout/obj/build/bootstrap/debug/rustc --crate-name rustc_llvm librustc_llvm/lib.rs --color always --error-format json --crate-type lib --emit=dep-info,link -C opt-level=2 -C metadata=4b8cacd6b6b8cbfa -C extra-filename=-4b8cacd6b6b8cbfa --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 rustc_cratesio_shim=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_cratesio_shim-296054b03e3b45fe.so --extern bitflags=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-9866e194db82a141.rlib --extern libc=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblibc-9b9c9af3e08f5b49.rlib -L native=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/rustc_llvm-72b7d72c0f85e5c7/out -L native=/usr/lib/llvm-3.9/lib --cfg llvm_component="aarch64" --cfg llvm_component="arm" --cfg llvm_component="asmparser" --cfg llvm_component="bitreader" --cfg llvm_component="bitwriter" --cfg llvm_component="instrumentation" --cfg llvm_component="interpreter" --cfg llvm_component="ipo" --cfg llvm_component="linker" --cfg llvm_component="lto" --cfg llvm_component="mcjit" --cfg llvm_component="mips" --cfg llvm_component="msp430" --cfg llvm_component="nvptx" --cfg llvm_component="powerpc" --cfg llvm_component="sparc" --cfg llvm_component="systemz" --cfg llvm_component="x86" -l static=rustllvm -l dylib=LLVM-3.9 -l dylib=rt -l dylib=dl -l dylib=tinfo -l dylib=pthread -l dylib=z -l dylib=m -l static=Polly -l static=PollyISL -l stdc++` (exit code: 101) [00:18:30] 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" "--manifest-path" "/checkout/src/librustc_trans/Cargo.toml" "--features" " jemalloc" "--message-format" "json" [00:18:30] expected success, got: exit code: 101 [00:18:30] thread 'main' panicked at 'cargo must succeed', bootstrap/compile.rs:1088:9 [00:18:30] travis_fold:start:stage0-rustc_trans travis_time:start:stage0-rustc_trans travis_fold:end:stage0-rustc_trans [00:18:30] travis_time:end:stage0-rustc_trans:start=1524038758808854458,finish=1524038770808298873,duration=11999444415 [00:18:30] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap build [00:18:30] Build completed unsuccessfully in 0:14:06 [00:18:30] make: *** [all] Error 1 [00:18:30] Makefile:28: recipe for targ2387044 . 1503740 ./obj/build 899288 ./obj/build/x86_64-unknown-linux-gnu 721852 ./src 547748 ./obj/build/x86_64-unknown-linux-gnu/stage0 --- 148456 ./.git/modules 148452 ./.git/modules/src 143308 ./obj/build/bootstrap/debug/incremental 122352 ./obj/build/bootstrap/debug/incremental/bootstrap-351vorei3hhuv 122348 ./obj/build/bootstrap/debug/incremental/bootstrap-351vorei3hhuv/s-f085adqnq4-2j9f6r-3cdwuqmwdwxyb 89684 ./src/llvm/test/CodeGen 70944 ./obj/build/x86_64-unknown-linux-gnu/native 70328 ./.git/modules/src/tools 70300 ./obj/build/x86_64-unknown-linux-gnu/native/jemalloc --- travis_fold:start:after_failure.4 travis_time:start:26ca8967 $ dmesg | grep -i kill [ 10.013125] init: failsafe main process (1093) killed by TERM signal [ 41.231828] init: plymouth-upstart-bridge main process (509) killed by TERM signal travis_fold:end:after_failure.4 Done. Your build exited with 1. ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:02:05] Compiling bootstrap v0.0.0 (file:///checkout/src/bootstrap) [00:02:06] error[E0425]: cannot find value `build` in this scope [00:02:06] --> bootstrap/compile.rs:556:8 [00:02:06] | [00:02:06] 556 | if build.config.rust_codegen_polly_by_default { [00:02:06] | ^^^^^ not found in this scope [00:02:06] help: possible candidates are found in other modules, you can import them into scope [00:02:06] 19 | use cmake::build; [00:02:06] | [00:02:06] 19 | use metadata::build; [00:02:06] | [00:02:06] | [00:02:06] [00:02:11] error: aborting due to previous error [00:02:11] [00:02:11] For more information about this error, try `rustc --explain E0425`. [00:02:11] error: Could not compile `bootstrap`. [00:02:11] To learn more, run the command again with --verbose. [00:02:11] To learn more, run the command again with --verbose. [00:02:11] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:11] Build completed unsuccessfully in 0:01:25 [00:02:11] make: *** [prepare] Error 1 [00:02:11] Makefile:81: recipe for target 'prepare' failed [00:02:11] Compiling bootstrap v0.0.0 (file:///checkout/src/bootstrap) [00:02:13] error[E0425]: cannot find value `build` in this scope [00:02:13] --> bootstrap/compile.rs:556:8 [00:02:13] | [00:02:13] | [00:02:13] 556 | if build.config.rust_codegen_polly_by_default { [00:02:13] | ^^^^^ not found in this scope [00:02:13] help: possible candidates are found in other modules, you can import them into scope [00:02:13] 19 | use cmake::build; [00:02:13] | [00:02:13] 19 | use metadata::build; [00:02:13] | [00:02:13] | [00:02:13] [00:02:17] error: aborting due to previous error [00:02:17] [00:02:17] For more information about this error, try `rustc --explain E0425`. [00:02:17] error: Could not compile `bootstrap`. [00:02:17] To learn more, run the command again with --verbose. [00:02:17] To learn more, run the command again with --verbose. [00:02:17] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:17] Build completed unsuccessfully in 0:00:06 [00:02:17] make: *** [prepare] Error 1 [00:02:17] Makefile:81: recipe for target 'prepare' failed [00:02:18] Compiling bootstrap v0.0.0 (file:///checkout/src/bootstrap) [00:02:19] error[E0425]: cannot find value `build` in this scope [00:02:19] --> bootstrap/compile.rs:556:8 [00:02:19] | [00:02:19] | [00:02:19] 556 | if build.config.rust_codegen_polly_by_default { [00:02:19] | ^^^^^ not found in this scope [00:02:19] help: possible candidates are found in other modules, you can import them into scope [00:02:19] 19 | use cmake::build; [00:02:19] | [00:02:19] 19 | use metadata::build; [00:02:19] | [00:02:19] | [00:02:19] [00:02:24] error: aborting due to previous error [00:02:24] [00:02:24] For more information about this error, try `rustc --explain E0425`. [00:02:24] error: Could not compile `bootstrap`. [00:02:24] To learn more, run the command again with --verbose. [00:02:24] To learn more, run the command again with --verbose. [00:02:24] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:24] Build completed unsuccessfully in 0:00:06 [00:02:24] make: *** [prepare] Error 1 [00:02:24] Makefile:81: recipe for target 'prepare' failed [00:02:24] Compiling bootstrap v0.0.0 (file:///checkout/src/bootstrap) [00:02:26] error[E0425]: cannot find value `build` in this scope [00:02:26] --> bootstrap/compile.rs:556:8 [00:02:26] | [00:02:26] | [00:02:26] 556 | if build.config.rust_codegen_polly_by_default { [00:02:26] | ^^^^^ not found in this scope [00:02:26] help: possible candidates are found in other modules, you can import them into scope [00:02:26] 19 | use cmake::build; [00:02:26] | [00:02:26] 19 | use metadata::build; [00:02:26] | [00:02:26] | [00:02:26] [00:02:30] error: aborting due to previous error [00:02:30] [00:02:30] For more information about this error, try `rustc --explain E0425`. [00:02:30] error: Could not compile `bootstrap`. [00:02:30] To learn more, run the command again with --verbose. [00:02:30] To learn more, run the command again with --verbose. [00:02:30] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:30] Build completed unsuccessfully in 0:00:06 [00:02:30] make: *** [prepare] Error 1 [00:02:30] Makefile:81: recipe for target 'prepare' failed [00:02:31] Compiling bootstrap v0.0.0 (file:///checkout/src/bootstrap) [00:02:32] error[E0425]: cannot find value `build` in this scope [00:02:32] --> bootstrap/compile.rs:556:8 [00:02:32] | [00:02:32] | [00:02:32] 556 | if build.config.rust_codegen_polly_by_default { [00:02:32] | ^^^^^ not found in this scope [00:02:32] help: possible candidates are found in other modules, you can import them into scope [00:02:32] 19 | use cmake::build; [00:02:32] | [00:02:32] 19 | use metadata::build; [00:02:32] | [00:02:32] | [00:02:32] [00:02:37] error: aborting due to previous error [00:02:37] [00:02:37] For more information about this error, try `rustc --explain E0425`. [00:02:37] error: Could not compile `bootstrap`. [00:02:37] To learn more, run the command again with --verbose. [00:02:37] To learn more, run the command again with --verbose. [00:02:37] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:37] Build completed unsuccessfully in 0:00:06 [00:02:37] Makefile:81: recipe for target 'prepare' failed [00:02:37] make: *** [prepare] Error 1 [00:02:37] The command has failed after 5 attempts. The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 1. travis_time:start:0b79e799 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) --- 11900 ./src/tools/lld 11028 ./.git/objects 10620 ./.git/objects/pack 10084 ./src/test/compile-fail 10012 ./src/llvm/test/MC/AMDGPU 9648 ./src/llvm/test/MC/Disassembler/AMDGPU 9180 ./.git/modules/src/tools/clippy/objects 9172 ./.git/modules/src/tools/clippy/objects/pack 9144 ./src/doc 8744 ./src/tools/lld/test ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:22:38] Compiling rustc_llvm v0.0.0 (file:///checkout/src/librustc_llvm) [00:22:49] error[E0308]: mismatched types [00:22:49] --> librustc_trans/mir/analyze.rs:219:55 [00:22:49] | [00:22:49] 219 | assignment_location.dominates(&location, &self.dominators) [00:22:49] | | [00:22:49] | | [00:22:49] | expected struct `rustc::mir::Location`, found reference [00:22:49] | help: consider removing the borrow: `location` [00:22:49] = note: expected type `rustc::mir::Location` [00:22:49] = note: expected type `rustc::mir::Location` [00:22:49] found type `&rustc::mir::Location` [00:22:50] error: aborting due to previous error [00:22:50] [00:22:50] For more information about this error, try `rustc --explain E0308`. [00:22:50] error: Could not compile `rustc_trans`. [00:22:50] error: Could not compile `rustc_trans`. [00:22:50] [00:22:50] Caused by: [00:22:50] process didn't exit successfully: `/checkout/obj/build/bootstrap/debug/rustc --crate-name rustc_trans librustc_trans/lib.rs --color always --error-format json --crate-type dylib --emit=dep-info,link -C prefer-dynamic -C opt-level=2 --cfg feature="jemalloc" --cfg feature="rustc_back" -C metadata=3f5643aa7a2f85b9 -C extra-filename=-3f5643aa7a2f85b9 --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 rustc_apfloat=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_apfloat-1299638d641ea770.rlib --extern rustc_llvm=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_llvm-4b8cacd6b6b8cbfa.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 flate2=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libflate2-3c8223b0152f22a5.rlib --extern libc=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblibc-9b9c9af3e08f5b49.rlib --extern tempdir=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libtempdir-65dde0349e75e965.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 bitflags=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libbitflags-9866e194db82a141.rlib --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 log=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblog-3e35efb9e5bc7a9a.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 rustc_mir=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_mir-162a5f87ca5da25c.so --extern rustc_incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_incremental-a8b04f1fc1bbb013.so --extern rustc_demangle=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_demangle-9090c44b5d5f6a2c.rlib --extern rustc_const_math=/checkout/obj/build/x86_64-unknown-l=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/miniz-sys-63734d0048644b22/out -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/rustc_llvm-72b7d72c0f85e5c7/out -L native=/usr/lib/llvm-3.9/lib` (exit code: 101) [00:22:50] 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" "--manifest-path" "/checkout/src/librustc_trans/Cargo.toml" "--features" " jemalloc" "--message-format" "json" [00:22:50] expected success, got: exit code: 101 [00:22:50] thread 'main' panicked at 'cargo must succeed', bootstrap/compile.rs:1076:9 [00:22:50] travis_fold:start:stage0-rustc_trans travis_time:start:stage0-rustc_trans travis_fold:end:stage0-rustc_trans [00:22:50] travis_time:end:stage0-rustc_trans:start=1524047320816587619,finish=1524047336537685398,duration=15721097779 [00:22:50] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap build [00:22:50] Build completed unsuccessfully in 0:17:42 [00:22:50] Makefile:28: recipe for target 'all' failed [00:22:50] make: *** [all] Error 1 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:022036f2 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:20:41] Compiling rustc_trans v0.0.0 (file:///checkout/src/librustc_trans) [00:20:41] Compiling cc v1.0.9 [00:20:41] Compiling num_cpus v1.8.0 [00:20:43] Compiling rustc_llvm v0.0.0 (file:///checkout/src/librustc_llvm) [00:20:51] error[E0432]: unresolved import `rustc::ty::Kind` [00:20:51] --> librustc_trans/debuginfo/mod.rs:29:17 [00:20:51] | [00:20:51] 29 | use rustc::ty::{Kind, GenericParamDef}; [00:20:51] | ^^^^ no `Kind` in `ty` [00:20:55] error: aborting due to previous error [00:20:55] [00:20:55] For more information about this error, try `rustc --explain E0432`. [00:20:55] error: Could not compile `rustc_trans`. [00:20:55] error: Could not compile `rustc_trans`. [00:20:55] [00:20:55] Caused by: [00:20:55] process didn't exit successfully: `/checkout/obj/build/bootstrap/debug/rustc --crate-name rustc_trans librustc_trans/lib.rs --color always --error-format json --crate-type dylib --emit=dep-info,link -C prefer-dynamic -C opt-level=2 --cfg feature="jemalloc" --cfg feature="rustc_back" -C metadata=3f5643aa7a2f85b9 -C extra-filename=-3f5643aa7a2f85b9 --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 rustc_apfloat=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_apfloat-1299638d641ea770.rlib --extern flate2=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libflate2-3c8223b0152f22a5.rlib --extern env_logger=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libenv_logger-ca6537e928001044.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_llvm=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_llvm-4b8cacd6b6b8cbfa.rlib --extern rustc_allocator=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_allocator-f82d75a0be2d5efe.so --extern libc=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblibc-9b9c9af3e08f5b49.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 syntax=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libsyntax-d3b6fcf798f7d22a.so --extern rustc_trans_utils=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_trans_utils-6ffcefe753960079.so --extern rustc_mir=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_mir-162a5f87ca5da25c.so --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=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc-ba75de4e9c022817.so --extern cc=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libcc-4cce4b494d3c8bde.rlib --extern rustc_demangle=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_demangle-9090c44b5d5f6a2c.rlib --extern rustc_const_math=/checkout/obj/buime:start:1ed5ecf4 Wed Apr 18 10:56:27 UTC 2018 Wed, 18 Apr 2018 10:56:27 GMT travis_time:end:1ed5ecf4:start=1524048987304163095,finish=1524048987362558010,duration=58394915 ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:18:54] Compiling rustc_trans v0.0.0 (file:///checkout/src/librustc_trans) [00:18:54] Compiling cc v1.0.9 [00:18:54] Compiling num_cpus v1.8.0 [00:18:57] Compiling rustc_llvm v0.0.0 (file:///checkout/src/librustc_llvm) [00:19:04] error[E0433]: failed to resolve. Use of undeclared type or module `Kind` [00:19:04] --> librustc_trans/debuginfo/mod.rs:396:29 [00:19:04] | [00:19:04] 396 | if kind == &Kind::Type { [00:19:04] | ^^^^ Use of undeclared type or module `Kind` [00:19:04] [00:19:04] error[E0433]: failed to resolve. Use of undeclared type or module `Kind` [00:19:04] --> librustc_trans/debuginfo/mod.rs:432:51 [00:19:04] | [00:19:04] 432 | GenericParamDef::Lifetime(lt) => (Kind::Lifetime, lt.name), [00:19:04] | ^^^^ Use of undeclared type or module `Kind` [00:19:04] [00:19:04] error[E0433]: failed to resolve. Use of undeclared type or module `Kind` [00:19:04] --> librustc_trans/debuginfo/mod.rs:433:47 [00:19:04] | [00:19:04] 433 | GenericParamDef::Type(ty) => (Kind::Type, ty.name), [00:19:04] | ^^^^ Use of undeclared type or module `Kind` [00:19:04] error[E0412]: cannot find type `Kind` in this scope [00:19:04] --> librustc_trans/debuginfo/mod.rs:426:36 [00:19:04] | [00:19:04] | [00:19:04] 426 | -> Vec<(Kind, InternedString)> { [00:19:04] | ^^^^ not found in this scope [00:19:04] help: possible candidate is found in another module, you can import it into scope [00:19:04] | [00:19:04] 14 | use rustc::ty::subst::Kind; [00:19:04] [00:19:08] error: aborting due to 4 previous errors [00:19:08] [00:19:08] Some errors occurred: E0412, E0433. [00:19:08] Some errors occurred: E0412, E0433. [00:19:08] For more information about an error, try `rustc --explain E0412`. [00:19:08] error: Could not compile `rustc_trans`. [00:19:08] [00:19:08] Caused by: [00:19:08] process didn't exit successfully: `/checkout/obj/build/bootstrap/debug/rustc --crate-name rustc_trans librustc_trans/lib.rs --color always --error-format json --crate-type dylib --emit=dep-info,link -C prefer-dynamic -C opt-level=2 --cfg feature="jemalloc" --cfg feature="rustc_back" -C metadata=3f5643aa7a2f85b9 -C extra-filename=-3f5643aa7a2f85b9 --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 rustc_back=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_back-861dba9fe03aa669.so --extern syntax=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libsyntax-d3b6fcf798f7d22a.so --extern tempdir=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libtempdir-65dde0349e75e965.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-895f7ddc4467bb8d.sease/deps/librustc_mir-162a5f87ca5da25c.so --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 log=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblog-3e35efb9e5bc7a9a.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 rustc_incremental=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_incremental-a8b04f1fc1bbb013.so --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 rustc_llvm=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/librustc_llvm-4b8cacd6b6b8cbfa.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 libc=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/liblibc-9b9c9af3e08f5b49.rlib --extern cc=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/deps/libcc-4cce4b494d3c8bde.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 -L native=/checkout/obj/build/x86_64-unknown-linux-gnu/stage0-rustc/x86_64-unknown-linux-gnu/release/build/miniz-sys-63734d0048644b22/out -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/rustc_llvm-72b7d72c0f85e5c7/out -L native=/usr/lib/llvm-3.9/lib` (exit code: 101) [00:19:08] 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" "--manifest-path" "/checkout/src/librustc_trans/Cargo.toml" "--features" " jemalloc" "--message-format" "json" [00:19:08] expected success, got: exit code: 101 [00:19:08] thread 'main' panicked at 'cargo must succeed', bootstrap/compile.rs:1076:9 [00:19:08] travis_fold:start:stage0-rustc_trans travis_time:start:stage0-rustc_trans travis_fold:end:stage0-rustc_trans [00:19:08] travis_time:end:stage0-rustc_trans:start=1524053154423534816,finish=1524053168012661342,duration=13589126526 [00:19:08] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap build [00:19:08] Build completed unsuccessfully in 0:14:32 [00:19:08] make: *** [all] Error 1 [00:19:08] Makefile:28: recipe for target 'all' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:1a6e3a01 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain ##################################################################### 96.0% ######################################################################## 100.0% [00:01:06] extracting /checkout/obj/build/cache/2018-04-04/cargo-beta-x86_64-unknown-linux-gnu.tar.gz [00:01:09] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:26] error: the lock file needs to be updated but --locked was passed to prevent this [00:01:26] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:01:26] Build completed unsuccessfully in 0:00:40 [00:01:26] make: *** [prepare] Error 1 [00:01:26] Makefile:81: recipe for target 'prepare' failed [00:01:26] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:26] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:27] error: the lock file needs to be updated but --locked was passed to prevent this [00:01:27] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:01:27] Build completed unsuccessfully in 0:00:00 [00:01:27] Makefile:81: recipe for target 'prepare' failed [00:01:27] make: *** [prepare] Error 1 [00:01:27] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:27] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:28] error: the lock file needs to be updated but --locked was passed to prevent this [00:01:28] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:01:28] Build completed unsuccessfully in 0:00:00 [00:01:28] Makefile:81: recipe for target 'prepare' failed [00:01:28] make: *** [prepare] Error 1 [00:01:28] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:28] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:28] error: the lock file needs to be updated but --locked was passed to prevent this [00:01:28] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:01:28] Build completed unsuccessfully in 0:00:00 [00:01:28] make: *** [prepare] Error 1 [00:01:28] Makefile:81: recipe for target 'prepare' failed [00:01:28] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:28] Updating registry `https://github.com/rust-lang/crates.io-index` [00:01:29] error: the lock file needs to be updated but --locked was passed to prevent this [00:01:29] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:01:29] Build completed unsuccessfully in 0:00:00 [00:01:29] Makefile:81: recipe for target 'prepare' failed [00:01:29] make: *** [prepare] Error 1 [00:01:29] The command has failed after 5 attempts. The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 1. travis_time:start:024fba28 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:03:23] Memory: 8 GB [00:03:23] Boot ROM Version: VMW71.00V.0.B64.1704110547 [00:03:23] Apple ROM Info: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]Welcome to the Virtual Machine [00:03:23] SMC Version (system): 2.8f0 [00:03:23] Serial Number (system): VMJm1fzJgRQm [00:03:23] [00:03:23] hw.ncpu: 3 [00:03:23] hw.byteorder: 1234 [00:03:23] hw.memsize: 8589934592 --- [01:25:20] test [debuginfo-lldb] debuginfo/vec.rs ... ok [01:25:20] [01:25:20] failures: [01:25:20] [01:25:20] ---- [debuginfo-lldb] debuginfo/c-style-enum.rs stdout ---- [01:25:20] NOTE: compiletest thinks it is using LLDB version 902 [01:25:20] [01:25:20] error: line not found in debugger output: [...]$6 = TheOnlyVariant [01:25:20] status: exit code: 0 [01:25:20] command: "/usr/bin/python" "/Users/travis/build/rust-lang/rust/src/etc/lldb_batchmode.py" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.debugger.script" [01:25:20] ------------------------------------------ [01:25:20] ------------------------------------------ [01:25:20] LLDB batch-mode script [01:25:20] ---------------------- [01:25:20] Debugger commands script is '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.debugger.script'. [01:25:20] Target executable is '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin'. [01:25:20] Current working directory is '/Users/travis/build/rust-lang/rust' [01:25:20] Creating a target for '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin' [01:25:20] settings set auto-confirm true [01:25:20] version [01:25:20] version [01:25:20] lldb-902.0.73.1 Swift-4.1 [01:25:20] command script import /Users/travis/build/rust-lang/rust/./src/etc/lldb_rust_formatters.py [01:25:20] type summary add --no-value --python-function lldb_rust_formatters.print_val -x ".*" --category Rust [01:25:20] type category enable Rust [01:25:20] [01:25:20] breakpoint set --file 'c-style-enum.rs' --line 188 [01:25:20] Breakpoint 1: where = c-style-enum.stage2-x86_64-apple-darwin`c_style_enum::main::hbb767c5c3f04a105 + 75 at c-style-enum.rs:188, address = 0x0000000100000c2b [01:25:20] run [01:25:20] Hit breakpoint 1.1: where = c-style-enum.stage2-x86_64-apple-darwin`c_style_enum::main::hbb767c5c3f04a105 + 75 at c-style-enum.rs:188, address = 0x0000000100000c2b, resolved, hit count = 1 [01:25:20] Process 51604 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100000c2b c-style-enum.stage2-x86_64-apple-darwin`c_style_enum::main::hbb767c5c3f04a105 at c-style-enum.rs:188 185 MANUAL_THREE = OneMillion; 186 }; 187 -> 188 zzz(); // #break 189 190 // Borrow to avoid an eager load of the constant value in the static. 191 let a = &SINGLE_VARIANT; Target 0: (c-style-enum.stage2-x86_64-apple-darwin) stopped. Process 51604 launched: '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin' (x86_64) [01:25:20] print auto_one [01:25:20] (c_style_enum::AutoDiscriminant) $0 = One [01:25:20] print auto_two [01:25:20] (c_style_enum::AutoDiscriminant) $1 = Two [01:25:20] print auto_three [01:25:20] (c_style_enum::AutoDiscriminant) $2 = Three [01:25:20] print manual_one_hundred [01:25:20] (c_style_enum::ManualDiscriminant) $3 = OneHundred [01:25:20] print manual_one_thousand [01:25:20] (c_style_enum::ManualDiscriminant) $4 = OneThousand [01:25:20] print manual_one_million [01:25:20] (c_style_enum::ManualDiscriminant) $5 = OneMillion [01:25:20] print single_variant [01:25:20] error: The expression could not be prepared to run in the target [01:25:20] quit [01:25:20] None [01:25:20] [01:25:20] ------------------------------------------ [01:25:20] ------------------------------------------ [01:25:20] stderr: [01:25:20] ------------------------------------------ [01:25:20] Error [IRForTarget]: Size of result type 'union SingleVariant { [01:25:20] c_style_enum::TheOnlyVariant; [01:25:20] }' couldn't be determined [01:25:20] ------------------------------------------ [01:25:20] [01:25:20] [01:25:20] thread '[debuginfo-lldb] debuginfo/c-style-enum.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2930:9 [01:25:20] [01:25:20] [01:25:20] failures: [01:25:20] [debuginfo-lldb] debuginfo/c-style-enum.rs [01:25:20] [debuginfo-lldb] debuginfo/c-style-enum.rs [01:25:20] [01:25:20] test result: FAILED. 89 passed; 1 failed; 19 ignored; 0 measured; 0 filtered out [01:25:20] [01:25:20] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [01:25:20] [01:25:20] [01:25:20] command did not execute successfully: "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage0-tools-bin/compiletest" "--compile-lib-path" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage2/lib" "--run-lib-path" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage2/lib/rustlib/x86_64-apple-darwin/lib" "--rustc-path" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage2/bin/rustc" "--src-base" "/Users/travis/build/rust-lang/rust/src/test/debuginfo" "--build-base" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo" "--stage-id" "stage2-x86_64-apple-darwin" "--mode" "debuginfo-lldb" "--target" "x86_64-apple-darwin" "--host" "x86_64-apple-darwin" "--llvm-filecheck" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/llvm/build/bin/FileCheck" "--nodejs" "/Users/travis/.nvm/versions/node/v6.12.3/bin/node" "--host-rustcflags" "-Crpath -O -Zunstable-options " "--target-rustcflags" "-Crpath -O -Zunstable-options -Lnative=/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/native/rust-test-helpers" "--docck-python" "/usr/local/opt/python/bin/python2.7" "--lldb-python" "/usr/bin/python" "--lldb-version" "lldb-902.0.73.1" "--lldb-python-dir" "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" "--llvm-version" "6.0.0\n" "--cc" "" "--cxx" "" "--cflags" "" "--llvm-components" "" "--llvm-cxxflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--color" "always" [01:25:20] [01:25:20] [01:25:20] failed to run: /Users/travis/build/rust-lang/rust/build/bootstrap/debug/bootstrap test [01:25:20] Build completed unsuccessfully in 0:22:14 [01:25:20] Build completed unsuccessfully in 0:22:14 [01:25:20] make: *** [check] Error 1 travis_time:end:0591d506:start=1524048958220371000,finish=1524054078692034000,duration=5120471663000 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:219e9064 --- travis_fold:start:after_failure.2 travis_time:start:03e66b88 $ ls -lat $HOME/Library/Logs/DiagnosticReports/ total 1248 drwx------ 21 travis staff 714 Apr 18 12:11 . -rw-------@ 1 travis staff 69158 Apr 18 12:11 stack-probes-lto.stage2-x86_64-apple-darwin_2018-04-18-121122-1_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 41181 Apr 18 12:11 stack-probes-lto.stage2-x86_64-apple-darwin_2018-04-18-121122_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 65181 Apr 18 12:11 stack-probes.stage2-x86_64-apple-darwin_2018-04-18-121115-1_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 39978 Apr 18 12:11 stack-probes.stage2-x86_64-apple-darwin_2018-04-18-121115_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10587 Apr 18 12:10 simd-target-feature-mixup.stage2-x86_64-apple-darwin_2018-04-18-121059_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10240 Apr 18 12:10 signal-exit-status.stage2-x86_64-apple-darwin_2018-04-18-121051_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10299 Apr 18 12:10 segfault-no-out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-121036_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10205 Apr 18 12:10 running-with-no-runtime.stage2-x86_64-apple-darwin_2018-04-18-121035_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10217 Apr 18 12:09 lto-abort.stage2-x86_64-apple-darwin_2018-04-18-120951_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 11317 Apr 18 12:09 abort-link-to-unwinding-crates.stage2-x86_64-apple-darwin_2018-04-18-120944_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10590 Apr 18 12:09 abort.stage2-x86_64-apple-darwin_2018-04-18-120944_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 67834 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120931_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 69155 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120928-1_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 68745 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120928-2_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 69986 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120928_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 12065 Apr 18 12:06 issue-24313.stage2-x86_64-apple-darwin_2018-04-18-120631_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10815 Apr 18 12:02 backtrace.stage2-x86_64-apple-darwin_2018-04-18-120249_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10815 Apr 18 12:02 backtrace.stage2-x86_64-apple-darwin_2018-04-18-120248_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10537 Apr 18 12:02 abort-on-c-abi.stage2-x86_64-apple-darwin_2018-04-18-120242_Traviss-Mac-1044.crash drwx------+ 15 travis staff 510 Jan 25 19:20 .. travis_fold:end:after_failure.2 travis_fold:start:after_failure.3 travis_time:start:0c4ac12c $ 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/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 travis_time:end:0c4ac12c:start=1524054080192360000,finish=1524054080225226000,duration=32866000 travis_fold:end:after_failure.3 travis_fold:start:after_failure.4 travis_time:start:18565d1c $ dmesg | grep -i kill Unable to obtain kernel buffer: Operation not permitted usage: sudo dmesg travis_fold:end:after_failure.4 Done. Your build exited with 1. ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:03:23] Memory: 8 GB [00:03:23] Boot ROM Version: VMW71.00V.0.B64.1704110547 [00:03:23] Apple ROM Info: [MS_VM_CERT/SHA1/27d66596a61c48dd3dc7216fd715126e33f59ae7]Welcome to the Virtual Machine [00:03:23] SMC Version (system): 2.8f0 [00:03:23] Serial Number (system): VMJm1fzJgRQm [00:03:23] [00:03:23] hw.ncpu: 3 [00:03:23] hw.byteorder: 1234 [00:03:23] hw.memsize: 8589934592 --- [01:25:20] test [debuginfo-lldb] debuginfo/vec.rs ... ok [01:25:20] [01:25:20] failures: [01:25:20] [01:25:20] ---- [debuginfo-lldb] debuginfo/c-style-enum.rs stdout ---- [01:25:20] NOTE: compiletest thinks it is using LLDB version 902 [01:25:20] [01:25:20] error: line not found in debugger output: [...]$6 = TheOnlyVariant [01:25:20] status: exit code: 0 [01:25:20] command: "/usr/bin/python" "/Users/travis/build/rust-lang/rust/src/etc/lldb_batchmode.py" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.debugger.script" [01:25:20] ------------------------------------------ [01:25:20] ------------------------------------------ [01:25:20] LLDB batch-mode script [01:25:20] ---------------------- [01:25:20] Debugger commands script is '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.debugger.script'. [01:25:20] Target executable is '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin'. [01:25:20] Current working directory is '/Users/travis/build/rust-lang/rust' [01:25:20] Creating a target for '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin' [01:25:20] settings set auto-confirm true [01:25:20] version [01:25:20] version [01:25:20] lldb-902.0.73.1 Swift-4.1 [01:25:20] command script import /Users/travis/build/rust-lang/rust/./src/etc/lldb_rust_formatters.py [01:25:20] type summary add --no-value --python-function lldb_rust_formatters.print_val -x ".*" --category Rust [01:25:20] type category enable Rust [01:25:20] [01:25:20] breakpoint set --file 'c-style-enum.rs' --line 188 [01:25:20] Breakpoint 1: where = c-style-enum.stage2-x86_64-apple-darwin`c_style_enum::main::hbb767c5c3f04a105 + 75 at c-style-enum.rs:188, address = 0x0000000100000c2b [01:25:20] run [01:25:20] Hit breakpoint 1.1: where = c-style-enum.stage2-x86_64-apple-darwin`c_style_enum::main::hbb767c5c3f04a105 + 75 at c-style-enum.rs:188, address = 0x0000000100000c2b, resolved, hit count = 1 [01:25:20] Process 51604 stopped * thread #1, queue = 'com.apple.main-thread', stop reason = breakpoint 1.1 frame #0: 0x0000000100000c2b c-style-enum.stage2-x86_64-apple-darwin`c_style_enum::main::hbb767c5c3f04a105 at c-style-enum.rs:188 185 MANUAL_THREE = OneMillion; 186 }; 187 -> 188 zzz(); // #break 189 190 // Borrow to avoid an eager load of the constant value in the static. 191 let a = &SINGLE_VARIANT; Target 0: (c-style-enum.stage2-x86_64-apple-darwin) stopped. Process 51604 launched: '/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo/c-style-enum.stage2-x86_64-apple-darwin' (x86_64) [01:25:20] print auto_one [01:25:20] (c_style_enum::AutoDiscriminant) $0 = One [01:25:20] print auto_two [01:25:20] (c_style_enum::AutoDiscriminant) $1 = Two [01:25:20] print auto_three [01:25:20] (c_style_enum::AutoDiscriminant) $2 = Three [01:25:20] print manual_one_hundred [01:25:20] (c_style_enum::ManualDiscriminant) $3 = OneHundred [01:25:20] print manual_one_thousand [01:25:20] (c_style_enum::ManualDiscriminant) $4 = OneThousand [01:25:20] print manual_one_million [01:25:20] (c_style_enum::ManualDiscriminant) $5 = OneMillion [01:25:20] print single_variant [01:25:20] error: The expression could not be prepared to run in the target [01:25:20] quit [01:25:20] None [01:25:20] [01:25:20] ------------------------------------------ [01:25:20] ------------------------------------------ [01:25:20] stderr: [01:25:20] ------------------------------------------ [01:25:20] Error [IRForTarget]: Size of result type 'union SingleVariant { [01:25:20] c_style_enum::TheOnlyVariant; [01:25:20] }' couldn't be determined [01:25:20] ------------------------------------------ [01:25:20] [01:25:20] [01:25:20] thread '[debuginfo-lldb] debuginfo/c-style-enum.rs' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2930:9 [01:25:20] [01:25:20] [01:25:20] failures: [01:25:20] [debuginfo-lldb] debuginfo/c-style-enum.rs [01:25:20] [debuginfo-lldb] debuginfo/c-style-enum.rs [01:25:20] [01:25:20] test result: FAILED. 89 passed; 1 failed; 19 ignored; 0 measured; 0 filtered out [01:25:20] [01:25:20] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [01:25:20] [01:25:20] [01:25:20] command did not execute successfully: "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage0-tools-bin/compiletest" "--compile-lib-path" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage2/lib" "--run-lib-path" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage2/lib/rustlib/x86_64-apple-darwin/lib" "--rustc-path" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/stage2/bin/rustc" "--src-base" "/Users/travis/build/rust-lang/rust/src/test/debuginfo" "--build-base" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/test/debuginfo" "--stage-id" "stage2-x86_64-apple-darwin" "--mode" "debuginfo-lldb" "--target" "x86_64-apple-darwin" "--host" "x86_64-apple-darwin" "--llvm-filecheck" "/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/llvm/build/bin/FileCheck" "--nodejs" "/Users/travis/.nvm/versions/node/v6.12.3/bin/node" "--host-rustcflags" "-Crpath -O -Zunstable-options " "--target-rustcflags" "-Crpath -O -Zunstable-options -Lnative=/Users/travis/build/rust-lang/rust/build/x86_64-apple-darwin/native/rust-test-helpers" "--docck-python" "/usr/local/opt/python/bin/python2.7" "--lldb-python" "/usr/bin/python" "--lldb-version" "lldb-902.0.73.1" "--lldb-python-dir" "/Applications/Xcode.app/Contents/SharedFrameworks/LLDB.framework/Resources/Python" "--llvm-version" "6.0.0\n" "--cc" "" "--cxx" "" "--cflags" "" "--llvm-components" "" "--llvm-cxxflags" "" "--adb-path" "adb" "--adb-test-dir" "/data/tmp/work" "--android-cross-path" "" "--color" "always" [01:25:20] [01:25:20] [01:25:20] failed to run: /Users/travis/build/rust-lang/rust/build/bootstrap/debug/bootstrap test [01:25:20] Build completed unsuccessfully in 0:22:14 [01:25:20] Build completed unsuccessfully in 0:22:14 [01:25:20] make: *** [check] Error 1 travis_time:end:0591d506:start=1524048958220371000,finish=1524054078692034000,duration=5120471663000 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:219e9064 --- travis_fold:start:after_failure.2 travis_time:start:03e66b88 $ ls -lat $HOME/Library/Logs/DiagnosticReports/ total 1248 drwx------ 21 travis staff 714 Apr 18 12:11 . -rw-------@ 1 travis staff 69158 Apr 18 12:11 stack-probes-lto.stage2-x86_64-apple-darwin_2018-04-18-121122-1_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 41181 Apr 18 12:11 stack-probes-lto.stage2-x86_64-apple-darwin_2018-04-18-121122_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 65181 Apr 18 12:11 stack-probes.stage2-x86_64-apple-darwin_2018-04-18-121115-1_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 39978 Apr 18 12:11 stack-probes.stage2-x86_64-apple-darwin_2018-04-18-121115_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10587 Apr 18 12:10 simd-target-feature-mixup.stage2-x86_64-apple-darwin_2018-04-18-121059_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10240 Apr 18 12:10 signal-exit-status.stage2-x86_64-apple-darwin_2018-04-18-121051_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10299 Apr 18 12:10 segfault-no-out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-121036_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10205 Apr 18 12:10 running-with-no-runtime.stage2-x86_64-apple-darwin_2018-04-18-121035_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10217 Apr 18 12:09 lto-abort.stage2-x86_64-apple-darwin_2018-04-18-120951_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 11317 Apr 18 12:09 abort-link-to-unwinding-crates.stage2-x86_64-apple-darwin_2018-04-18-120944_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10590 Apr 18 12:09 abort.stage2-x86_64-apple-darwin_2018-04-18-120944_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 67834 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120931_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 69155 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120928-1_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 68745 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120928-2_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 69986 Apr 18 12:09 out-of-stack.stage2-x86_64-apple-darwin_2018-04-18-120928_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 12065 Apr 18 12:06 issue-24313.stage2-x86_64-apple-darwin_2018-04-18-120631_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10815 Apr 18 12:02 backtrace.stage2-x86_64-apple-darwin_2018-04-18-120249_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10815 Apr 18 12:02 backtrace.stage2-x86_64-apple-darwin_2018-04-18-120248_Traviss-Mac-1044.crash -rw-------@ 1 travis staff 10537 Apr 18 12:02 abort-on-c-abi.stage2-x86_64-apple-darwin_2018-04-18-120242_Traviss-Mac-1044.crash drwx------+ 15 travis staff 510 Jan 25 19:20 .. travis_fold:end:after_failure.2 travis_fold:start:after_failure.3 travis_time:start:0c4ac12c $ 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/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 travis_time:end:0c4ac12c:start=1524054080192360000,finish=1524054080225226000,duration=32866000 travis_fold:end:after_failure.3 travis_fold:start:after_failure.4 travis_time:start:18565d1c $ dmesg | grep -i kill Unable to obtain kernel buffer: Operation not permitted usage: sudo dmesg travis_fold:end:after_failure.4 Done. Your build exited with 1. ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [01:09:43] ...............................................................i.................................... [01:10:02] ..................................................i................................................. [01:10:26] .................................................................................................... [01:10:53] .................................................................................................... [01:11:19] ............................................................F....................................... [01:12:11] ....i...............................................test [run-pass] run-pass/mir_heavy_promoted.rs has been running for over 60 seconds [01:12:34] ................................................ [01:13:15] .................................................................................................... [01:13:52] ......................................................................ii............................ --- [01:17:43] .................................................................................................... [01:18:41] ................................................................. [01:18:41] failures: [01:18:41] [01:18:41] ---- [run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs stdout ---- [01:18:41] thread '[run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs' panicked at 'failed to exec `"/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-pass/mir-inlining/llvm-error-issue-50041.stage2-x86_64-unknown-linux-gnu"`: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }', libcore/result.rs:945:5 [01:18:41] [01:18:41] [01:18:41] failures: [01:18:41] [run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs [01:18:41] [run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs [01:18:41] [01:18:41] test result: FAILED. 2945 passed; 1 failed; 19 ignored; 0 measured; 0 filtered out [01:18:41] [01:18:41] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [01:18:41] [01:18:41] [01:18:41] 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/run-pass" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-pass" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "run-pass" "--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 -Zunstable-options " "--target-rustcflags" "-Crpath -O -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" [01:18:41] [01:18:41] [01:18:41] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [01:18:41] Build completed unsuccessfully in 0:18:11 [01:18:41] Build completed unsuccessfully in 0:18:11 [01:18:41] Makefile:58: recipe for target 'check' failed [01:18:41] make: *** [check] Error 1 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:085d334e $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain 127.0.0.1 localhost nettuno travis vagrant 127.0.1.1 travis-job-6b28f437-494f-4914-899d-f65ca01cba82 travis-job-6b28f437-494f-4914-899d-f65ca01cba82 ip4-loopback trusty64 travis_fold:start:git.checkout travis_time:start:018a4d27 $ git clone --depth=2 --branch=try https://github.com/rust-lang/rust.git rust-lang/rust --- [00:02:16] ######################################################################## 100.0% [00:02:16] extracting /checkout/obj/build/cache/2018-04-04/cargo-beta-x86_64-unknown-linux-gnu.tar.gz [00:02:17] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:34] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:34] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:34] Build completed unsuccessfully in 0:00:35 [00:02:34] make: *** [prepare] Error 1 [00:02:34] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:34] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:35] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:35] Build completed unsuccessfully in 0:00:00 [00:02:35] make: *** [prepare] Error 1 [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:35] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:35] Build completed unsuccessfully in 0:00:00 [00:02:35] make: *** [prepare] Error 1 [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:36] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:36] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:36] Build completed unsuccessfully in 0:00:00 [00:02:36] make: *** [prepare] Error 1 [00:02:36] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:36] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:36] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:36] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:36] Build completed unsuccessfully in 0:00:00 [00:02:36] make: *** [prepare] Error 1 [00:02:36] The command has failed after 5 attempts. The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 1. travis_time:start:1ab66b57 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain 127.0.0.1 localhost nettuno travis vagrant 127.0.1.1 travis-job-6b28f437-494f-4914-899d-f65ca01cba82 travis-job-6b28f437-494f-4914-899d-f65ca01cba82 ip4-loopback trusty64 travis_fold:start:git.checkout travis_time:start:018a4d27 $ git clone --depth=2 --branch=try https://github.com/rust-lang/rust.git rust-lang/rust --- [00:02:16] ######################################################################## 100.0% [00:02:16] extracting /checkout/obj/build/cache/2018-04-04/cargo-beta-x86_64-unknown-linux-gnu.tar.gz [00:02:17] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:34] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:34] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:34] Build completed unsuccessfully in 0:00:35 [00:02:34] make: *** [prepare] Error 1 [00:02:34] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:34] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:35] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:35] Build completed unsuccessfully in 0:00:00 [00:02:35] make: *** [prepare] Error 1 [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:35] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:35] Build completed unsuccessfully in 0:00:00 [00:02:35] make: *** [prepare] Error 1 [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:35] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:36] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:36] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:36] Build completed unsuccessfully in 0:00:00 [00:02:36] make: *** [prepare] Error 1 [00:02:36] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:36] Updating registry `https://github.com/rust-lang/crates.io-index` [00:02:36] error: the lock file needs to be updated but --locked was passed to prevent this [00:02:36] failed to run: /checkout/obj/build/x86_64-unknown-linux-gnu/stage0/bin/cargo build --manifest-path /checkout/src/bootstrap/Cargo.toml --locked [00:02:36] Build completed unsuccessfully in 0:00:00 [00:02:36] make: *** [prepare] Error 1 [00:02:36] The command has failed after 5 attempts. The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 1. travis_time:start:1ab66b57 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:53:15] ...............................................................i.................................... [00:53:30] .................................................i.................................................. [00:53:50] .................................................................................................... [00:54:10] .................................................................................................... [00:54:31] ...........................................................F........................................ [00:55:25] ....i....................................................................................test [run-pass] run-pass/mir_heavy_promoted.rs has been running for over 60 seconds [00:55:30] ........... [00:56:02] .................................................................................................... [00:56:33] ......................................................................ii............................ [00:56:33] ......................................................................ii............................ [00:57:24] .................................i....................................................i.ii.....test [run-pass] run-pass/saturating-float-casts.rs has been running for over 60 seconds [00:58:09] ..............................................................................................iiiiii [00:58:37] i................................................................................................... [00:59:08] .................................................................................................... [00:59:34] .................................................................................................... [00:59:34] .................................................................................................... [00:59:51] ................................................................. [00:59:51] failures: [00:59:51] [00:59:51] ---- [run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs stdout ---- [00:59:51] thread '[run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs' panicked at 'failed to exec `"/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-pass/mir-inlining/llvm-error-issue-50041.stage2-x86_64-unknown-linux-gnu"`: Os { code: 13, kind: PermissionDenied, message: "Permission denied" }', libcore/result.rs:945:5 [00:59:51] [00:59:51] [00:59:51] failures: [00:59:51] [run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs [00:59:51] [run-pass] run-pass/mir-inlining/llvm-error-issue-50041.rs [00:59:51] [00:59:51] test result: FAILED. 2945 passed; 1 failed; 19 ignored; 0 measured; 0 filtered out [00:59:51] [00:59:51] thread 'main' panicked at 'Some tests failed', tools/compiletest/src/main.rs:488:22 [00:59:51] [00:59:51] [00:59:51] 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/run-pass" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-pass" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "run-pass" "--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 -Zunstable-options " "--target-rustcflags" "-Crpath -O -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:59:51] [00:59:51] [00:59:51] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [00:59:51] Build completed unsuccessfully in 0:13:44 [00:59:51] Build completed unsuccessfully in 0:13:44 [00:59:51] Makefile:58: recipe for target 'check' failed [00:59:51] make: *** [check] Error 1 The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:24d17cd8 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain travis_time:start:test_codegen Check compiletest suite=codegen mode=codegen (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [00:57:10] [00:57:10] running 75 tests [00:57:14] i...i..ii....i.............ii.........iii......i..i...i...ii..i..i..ii..... [00:57:14] [00:57:14] finished in 3.865 [00:57:14] travis_fold:end:test_codegen --- travis_time:start:test_debuginfo Check compiletest suite=debuginfo mode=debuginfo-gdb (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [00:57:37] [00:57:37] running 109 tests [00:57:49] iiii.......i..i........i..i.i.............i..........iiii...........i...i..........ii.i.i.......ii.. [00:57:50] test result: ok. 85 passed; 0 failed; 24 ignored; 0 measured; 0 filtered out [00:57:50] [00:57:50] finished in 13.674 [00:57:50] travis_fold:end:test_debuginfo --- [01:28:04] status: exit code: 2 [01:28:04] command: "make" [01:28:04] stdout: [01:28:04] ------------------------------------------ [01:28:04] make[1]: Entering directory '/checkout/src/test/run-make/filter_backtrace' [01:28:04] /checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc main.rs -o /checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/filter_backtrace.stage2-x86_64-unknown-linux-gnu/main [01:28:04] # with short backtrace [01:28:04] RUST_BACKTRACE=1 /checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/filter_backtrace.stage2-x86_64-unknown-linux-gnu/main 2> /checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/filter_backtrace.stage2-x86_64-unknown-linux-gnu/short_bt.stderr || exit 0 && exit 1 [01:28:04] cat /checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/filter_backtrace.stage2-x86_64-unknown-linux-gnu/short_bt.stderr # FIXME: remove this debug cat [01:28:04] thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', libcore/option.rs:335:21 [01:28:04] note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. [01:28:04] stack backtrace: [01:28:04] 8: core::panicking::panic [01:28:04] 9: >::unwrap [01:28:04] 10: main::main [01:28:04] 11: std::rt::lang_start::{{closure}} [01:28:04] 14: std::panicking::try [01:28:04] 15: std::panic::catch_unwind [01:28:04] 16: std::rt::lang_start_internal [01:28:04] 18: main [01:28:04] 19: __libc_start_main [01:28:04] 20: _start [01:28:04] "panicked at" < /checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make/filter_backtrace.stage2-x86_64-unknown-linux-gnu/short_bt.stderr [01:28:04] Makefile:6: recipe for target 'all' failed [01:28:04] make[1]: Leaving directory '/checkout/src/test/run-make/filter_backtrace' [01:28:04] ------------------------------------------ [01:28:04] stderr: [01:28:04] ------------------------------------------ [01:28:04] ------------------------------------------ [01:28:04] /bin/sh: 1: panicked at: not found [01:28:04] make[1]: *** [all] Error 127 [01:28:04] ------------------------------------------ [01:28:04] [01:28:04] [01:28:04] thread '[run-make] run-make/filter_backtrace' panicked at 'explicit panic', tools/compiletest/src/runtest.rs:2930:9 [01:28:04] [01:28:04] [01:28:04] failures: [01:28:04] [run-make] run-make/filter_backtrace [01:28:04] [run-make] run-make/filter_backtrace [01:28:04] [01:28:04] test result: FAILED. 3 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out [01:28:04] [01:28:04] [01:28:04] [01:28:04] 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/run-make" "--build-base" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/run-make" "--stage-id" "stage2-x86_64-unknown-linux-gnu" "--mode" "run-make" "--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 -Zunstable-options " "--target-rustcflags" "-Crpath -O -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" [01:28:04] [01:28:04] [01:28:04] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [01:28:04] Build completed unsuccessfully in 0:47:40 [01:28:04] Build completed unsuccessfully in 0:47:40 [01:28:04] make: *** [check] Error 1 [01:28:04] Makefile:58: recipe for target 'check' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:14b52140 $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain [00:34:02] Compiling remove_dir_all v0.5.0 [00:34:04] Compiling rand v0.4.2 [00:34:10] Compiling tempdir v0.3.7 [00:34:11] Compiling rustdoc v0.0.0 (file:///checkout/src/librustdoc) [00:34:35] error: this feature has been stable since 1.27.0. Attribute no longer needed [00:34:35] | [00:34:35] | [00:34:35] 26 | #![feature(dyn_trait)] [00:34:35] | [00:34:35] | [00:34:35] = note: `-D stable-features` implied by `-D warnings` [00:34:36] error: aborting due to previous error [00:34:36] [00:34:36] error: Could not compile `rustdoc`. [00:34:36] --- [00:34:36] [00:34:36] [00:34:36] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap build [00:34:36] Build completed unsuccessfully in 0:30:04 [00:34:36] Makefile:28: recipe for target 'all' failed [00:34:36] make: *** [all] Error 1 314852 ./src/llvm 256592 ./obj/build/x86_64-unknown-linux-gnu/stage0/lib/rustlib/x86_64-unknown-linux-gnu/lib 241180 ./src/llvm-emscripten 210056 ./src/llvm/test --- 129092 ./obj/build/x86_64-unknown-linux-gnu/stage1-std 123232 ./obj/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu 123228 ./obj/build/x86_64-unknown-linux-gnu/stage1-rustc/x86_64-unknown-linux-gnu/release 122496 ./obj/build/bootstrap/debug/incremental/bootstrap-351vorei3hhuv 122492 ./obj/build/bootstrap/debug/incremental/bootstrap-351vorei3hhuv/s-f08iav2o7s-u6381x-3iinsx0508xbp 90192 ./obj/build/x86_64-unknown-linux-gnu/stage1 90168 ./obj/build/x86_64-unknown-linux-gnu/stage1/lib 89692 ./src/llvm/test/CodeGen 82440 ./obj/build/x86_64-unknown-linux-gnu/stage1-std/x86_64-unknown-linux-gnu ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))
TimNN commented 6 years ago

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. ```plain travis_time:start:test_codegen Check compiletest suite=codegen mode=codegen (x86_64-unknown-linux-gnu -> x86_64-unknown-linux-gnu) [00:55:09] [00:55:09] running 75 tests [00:55:12] i...i..ii....i.............ii.........iii......i..i...i...ii..i.Fi..ii..... [00:55:12] [00:55:12] ---- [codegen] codegen/repeat-trusted-len.rs stdout ---- [00:55:12] [00:55:12] [00:55:12] error: verification with 'FileCheck' failed [00:55:12] status: exit code: 1 [00:55:12] command: "/usr/lib/llvm-3.9/bin/FileCheck" "--input-file" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen/repeat-trusted-len.ll" "/checkout/src/test/codegen/repeat-trusted-len.rs" [00:55:12] ------------------------------------------ [00:55:12] [00:55:12] ------------------------------------------ [00:55:12] stderr: [00:55:12] stderr: [00:55:12] ------------------------------------------ [00:55:12] /checkout/src/test/codegen/repeat-trusted-len.rs:26:11: error: expected string not found in input [00:55:12] // CHECK: call void @llvm.memset.p0i8.[[USIZE]](i8* {{(nonnull )?}}%{{[0-9]+}}, i8 42, [[USIZE]] 100000, i32 1, i1 false) [00:55:12] ^ [00:55:12] /checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen/repeat-trusted-len.ll:17:33: note: scanning from here [00:55:12] define void @repeat_take_collect(%"alloc::vec::Vec"* noalias nocapture sret dereferenceable(24)) unnamed_addr #1 personality i32 (i32, i32, i64, %"unwind::libunwind::_Unwind_Exception"*, %"unwind::libunwind::_Unwind_Context"*)* @rust_eh_personality { [00:55:12] ^ [00:55:12] /checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen/repeat-trusted-len.ll:17:33: note: with variable "USIZE" equal to "i64" [00:55:12] define void @repeat_take_collect(%"alloc::vec::Vec"* noalias nocapture sret dereferenceable(24)) unnamed_addr #1 personality i32 (i32, i32, i64, %"unwind::libunwind::_Unwind_Exception"*, %"unwind::libunwind::_Unwind_Context"*)* @rust_eh_personality { [00:55:12] ^ [00:55:12] /checkout/obj/build/x86_64-unknown-linux-gnu/test/codegen/repeat-trusted-len.ll:17:33: note: with variable "USIZE" equal to "i64" [00:55:12] define void @repeat_take_collect(%"alloc::vec::Vec"* noalias nocapture sret dereferenceable(24)) unnamed_addr #1 personality i32 (i32, i32, i64, %"unwind::libunwind::_Unwind_Exception"*, %"unwind::libunwind::_Unwind_Context"*)* @rust_eh_personality { [00:55:12] [00:55:12] ------------------------------------------ [00:55:12] [00:55:12] [00:55:12] thread '[codegen] codegen/repeat-trusted-len.rs' panicked k" "--android-cross-path" "" "--color" "always" [00:55:12] [00:55:12] [00:55:12] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test [00:55:12] Build completed unsuccessfully in 0:15:48 [00:55:12] Build completed unsuccessfully in 0:15:48 [00:55:12] make: *** [check] Error 1 [00:55:12] Makefile:58: recipe for target 'check' failed The command "stamp sh -x -c "$RUN_SCRIPT"" exited with 2. travis_time:start:04f6cfec $ date && (curl -fs --head https://google.com | grep ^Date: | sed 's/Date: //g' || true) ```

[I'm a bot](https://github.com/rust-ops/rust-log-analyzer)! 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](https://github.com/rust-ops/rust-log-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3Afeature-request))