Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Log analysis error for PR 49393 at 2018-04-02T16:26:02Z (PR-CI test, doctest failure) #3

Open
kennytm opened this issue Apr 4, 2018 · 0 comments

Comments

@kennytm
Copy link
Member

kennytm commented Apr 4, 2018

Comment: rust-lang/rust#49393 (comment)
Raw Log: https://api.travis-ci.org/v3/job/361217335/log.txt

Relevant section which should be displayed
[01:07:17] �[m�[m�[32m�[1m   Doc-tests�[m core
[01:07:30] 
[01:07:30] running 1616 tests
[01:07:44] ....................................................................................................
[01:08:00] ....................................................................................................
[01:08:19] .............................................................i......................................
[01:08:32] ....................................................................................................
[01:08:46] ....................................................................................................
[01:08:59] ....................................................................................................
[01:09:12] ....................................................................................................
[01:09:26] ....................................................................................................
[01:09:39] ....................................................................................................
[01:09:52] ....................................................................................................
[01:10:05] ....................................................................................................
[01:10:18] ....................................................................................................
[01:10:31] ......................................................F..F...........F..F............F.F...........F
[01:10:45] ..F.............FF...........F..F...................................................................
[01:10:59] ....................................................................................................
[01:11:13] ....................................................................................................
[01:11:16] ................
[01:11:16] failures:
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u128>::is_power_of_two (line 684) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:685:9
[01:11:16]   |
[01:11:16] 4 | assert!(Wrapping(16).is_power_of_two());
[01:11:16]   |         ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:686:10
[01:11:16]   |
[01:11:16] 5 | assert!(!Wrapping(10).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:687:10
[01:11:16]   |
[01:11:16] 6 | assert!(!Wrapping(0).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] note: Run with `RUST_BACKTRACE=1` for a backtrace.
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u128>::next_power_of_two (line 703) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:12
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:45
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:12
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:45
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:12
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:50
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |                                                  ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u16>::is_power_of_two (line 684) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:685:9
[01:11:16]   |
[01:11:16] 4 | assert!(Wrapping(16).is_power_of_two());
[01:11:16]   |         ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:686:10
[01:11:16]   |
[01:11:16] 5 | assert!(!Wrapping(10).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:687:10
[01:11:16]   |
[01:11:16] 6 | assert!(!Wrapping(0).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u16>::next_power_of_two (line 703) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:12
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:45
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:12
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:45
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:12
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:50
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |                                                  ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u32>::is_power_of_two (line 684) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:685:9
[01:11:16]   |
[01:11:16] 4 | assert!(Wrapping(16).is_power_of_two());
[01:11:16]   |         ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:686:10
[01:11:16]   |
[01:11:16] 5 | assert!(!Wrapping(10).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:687:10
[01:11:16]   |
[01:11:16] 6 | assert!(!Wrapping(0).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u32>::next_power_of_two (line 703) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:12
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:45
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:12
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:45
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:12
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:50
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |                                                  ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u64>::is_power_of_two (line 684) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:685:9
[01:11:16]   |
[01:11:16] 4 | assert!(Wrapping(16).is_power_of_two());
[01:11:16]   |         ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:686:10
[01:11:16]   |
[01:11:16] 5 | assert!(!Wrapping(10).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:687:10
[01:11:16]   |
[01:11:16] 6 | assert!(!Wrapping(0).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u64>::next_power_of_two (line 703) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:12
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:45
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:12
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:45
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:12
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:50
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |                                                  ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u8>::is_power_of_two (line 684) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:685:9
[01:11:16]   |
[01:11:16] 4 | assert!(Wrapping(16).is_power_of_two());
[01:11:16]   |         ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:686:10
[01:11:16]   |
[01:11:16] 5 | assert!(!Wrapping(10).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:687:10
[01:11:16]   |
[01:11:16] 6 | assert!(!Wrapping(0).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<u8>::next_power_of_two (line 703) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:12
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:45
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:12
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:45
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:12
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:50
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |                                                  ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<usize>::is_power_of_two (line 684) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:685:9
[01:11:16]   |
[01:11:16] 4 | assert!(Wrapping(16).is_power_of_two());
[01:11:16]   |         ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:686:10
[01:11:16]   |
[01:11:16] 5 | assert!(!Wrapping(10).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:687:10
[01:11:16]   |
[01:11:16] 6 | assert!(!Wrapping(0).is_power_of_two());
[01:11:16]   |          ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 3 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] ---- num/wrapping.rs - num::wrapping::Wrapping<usize>::next_power_of_two (line 703) stdout ----
[01:11:16] 	error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:12
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:706:45
[01:11:16]   |
[01:11:16] 6 | assert_eq!(Wrapping(2).next_power_of_two(), Wrapping(2));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:12
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:707:45
[01:11:16]   |
[01:11:16] 7 | assert_eq!(Wrapping(3).next_power_of_two(), Wrapping(4));
[01:11:16]   |                                             ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:12
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |            ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] error[E0425]: cannot find function `Wrapping` in this scope
[01:11:16]  --> num/wrapping.rs:708:50
[01:11:16]   |
[01:11:16] 8 | assert_eq!(Wrapping(200_u8).next_power_of_two(), Wrapping(0));
[01:11:16]   |                                                  ^^^^^^^^ not found in this scope
[01:11:16] help: possible candidate is found in another module, you can import it into scope
[01:11:16]   |
[01:11:16] 5 | use std::num::Wrapping;
[01:11:16]   |
[01:11:16] 
[01:11:16] thread 'rustc' panicked at 'couldn't compile the test', librustdoc/test.rs:306:13
[01:11:16] 
[01:11:16] 
[01:11:16] failures:
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u128>::is_power_of_two (line 684)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u128>::next_power_of_two (line 703)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u16>::is_power_of_two (line 684)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u16>::next_power_of_two (line 703)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u32>::is_power_of_two (line 684)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u32>::next_power_of_two (line 703)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u64>::is_power_of_two (line 684)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u64>::next_power_of_two (line 703)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u8>::is_power_of_two (line 684)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<u8>::next_power_of_two (line 703)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<usize>::is_power_of_two (line 684)
[01:11:16]     num/wrapping.rs - num::wrapping::Wrapping<usize>::next_power_of_two (line 703)
[01:11:16] 
[01:11:16] test result: FAILED. 1603 passed; 12 failed; 1 ignored; 0 measured; 0 filtered out
Invalid analysis result
Resolving deltas: 100% (612388/612388), completed with 4838 local objects.
---
[00:00:44] configure: rust.quiet-tests     := True
---
[00:38:19] .........................................................................i..........................
[00:38:25] ................i...................................................................................
---
[00:38:59] ............................................................................................i.......
[00:39:06] ................................................................i...................................
---
[00:39:58] .............................................i......................................................
---
[00:43:37] .............................i......................................................................
[00:43:51] ..............................................................i.....................................
[00:44:06] ...............................................i....................................................
[00:44:25] ....................................................................................................
[00:44:46] ....................................................................................................
[00:45:07] ....................................................................................................
[00:45:31] .i................................................................................................i.
[00:45:59] ........................................................................................test [run-pass] run-pass/mir_heavy_promoted.rs has been running for over 60 seconds
[00:46:05] ............
[00:46:34] ....................................................................................................
[00:47:07] ...............................................................ii...................................
[00:47:54] ..........................i....................................................i.ii.................
[00:48:32] .......................................................................................iiiiiii......
---
[00:50:29] ....................................i...............................................................
[00:50:36] ....................................................................................................
[00:50:44] ..................i............................................................ii.iii...............
[00:50:51] ....................................................................................................
[00:50:58] ........i..............................i............................................................
[00:51:06] ....................................................................................................
[00:51:12] .....................i..............................................................................
[00:51:20] ....................................................................................................
[00:51:30] ....................................................................................................
[00:51:40] ....................................................................................................
[00:51:51] ....................................................................................................
[00:52:03] ....................................................................................................
[00:52:11] ..............i.....................................................................................
[00:52:21] .................i..ii..............................................................................
[00:52:31] ....................................................................................................
[00:52:41] ....................................................................................................
[00:52:50] ....................................................................................i...............
[00:53:00] ..............................i.....................................................................
---
[00:53:37] ...........................i........................................................................
[00:53:38] ....................................................................i...............................
[00:53:39] ................i.......................................................
---
[00:53:53] ...........i........................
---
[00:54:23] i...i..ii....i.............ii........iii......i..i...i...ii..i..i..ii.....
---
[00:54:26] i.......i......................i......
---
[00:55:02] iiii.......i..i........i..i.i.............i..........iiii...........i...i..........ii.i.i.......ii..
[00:55:03] ....ii...
---
[01:03:25] ...i................................................................................................
---
[01:05:10] ......................................i.............................................................
[01:05:29] ....................................................................................................
[01:05:48] .............................................i......................................................
---
[01:07:17] ........................................................ii..........................................
---
[01:08:19] .............................................................i......................................
---
[01:11:16] 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" "core" "--" "--quiet"
[01:11:16] expected success, got: exit code: 101
[01:11:16]
[01:11:16]
[01:11:16] failed to run: /checkout/obj/build/bootstrap/debug/bootstrap test
[01:11:16] Build completed unsuccessfully in 0:33:48
[01:11:16] Makefile:58: recipe for target 'check' failed
[01:11:16] make: *** [check] Error 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant