Oct 16 05:09:24.903 INFO testing jam-0.0.1 against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 16 05:09:24.903 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt build --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 16 05:09:25.104 INFO blam! 78b487b14ac8c2f69df6b77e14cb5342e2a2d59056c994aa650e73e9bdafd04d Oct 16 05:09:25.106 INFO running `"docker" "start" "-a" "78b487b14ac8c2f69df6b77e14cb5342e2a2d59056c994aa650e73e9bdafd04d"` Oct 16 05:09:25.498 INFO kablam! usermod: no changes Oct 16 05:09:25.561 INFO kablam! Compiling serde_codegen_internals v0.14.2 Oct 16 05:09:25.561 INFO kablam! Compiling jam_derive v0.0.1 Oct 16 05:09:25.561 INFO kablam! Compiling bincode v0.7.0 Oct 16 05:09:28.315 INFO kablam! Compiling serde_derive v0.9.15 Oct 16 05:09:37.561 INFO kablam! Compiling jam v0.0.1 (/source) Oct 16 05:09:38.355 INFO blam! " struct MusicService { some : u32 , } impl Service for MusicService { fn get ( & self , hash : u32 ) -> Result < u32 , Error > { match args . hash { 0 => Ok ( * self . some ) , _ => Err ( Error :: WrongNumber ) , } } fn set ( & mut self , hash : u32 ) -> Result < ( ) , Error > { * self . some = args . hash ; Ok ( ( ) ) } } " Oct 16 05:09:38.360 INFO blam! # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceget { pub hash : u32 } # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceset { pub hash : u32 } pub struct MusicService { some : Arc < RefCell < u32 > > } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceArgs { get ( MusicServiceget ) , set ( MusicServiceset ) } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceRet { InvalidMethod , get ( Result < u32 , Error > ) , set ( Result < ( ) , Error > ) } impl Service for MusicService { fn process ( & mut self , input : & [ u8 ] ) -> Vec < u8 > { use bincode :: { serialize , deserialize , Infinite } ; let args : MusicServiceArgs = deserialize ( input ) . unwrap ( ) ; let mut ret : MusicServiceRet = MusicServiceRet :: InvalidMethod ; let ret = match args { MusicServiceArgs :: get ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { match args . hash { 0 => Ok ( * self_some ) , _ => Err ( Error :: WrongNumber ) , } } } ; MusicServiceRet :: get ( tmp ) } , MusicServiceArgs :: set ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { * self_some = args . hash ; Ok ( ( ) ) } } ; MusicServiceRet :: set ( tmp ) } } ; serialize ( & ret , Infinite ) . unwrap ( ) } } Oct 16 05:09:38.362 INFO blam! # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceget { pub hash : u32 } # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceset { pub hash : u32 } pub struct MusicService { some : Arc < RefCell < u32 > > } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceArgs { get ( MusicServiceget ) , set ( MusicServiceset ) } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceRet { InvalidMethod , get ( Result < u32 , Error > ) , set ( Result < ( ) , Error > ) } impl Service for MusicService { fn process ( & mut self , input : & [ u8 ] ) -> Vec < u8 > { use bincode :: { serialize , deserialize , Infinite } ; let args : MusicServiceArgs = deserialize ( input ) . unwrap ( ) ; let mut ret : MusicServiceRet = MusicServiceRet :: InvalidMethod ; let ret = match args { MusicServiceArgs :: get ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { match args . hash { 0 => Ok ( * self_some ) , _ => Err ( Error :: WrongNumber ) , } } } ; MusicServiceRet :: get ( tmp ) } , MusicServiceArgs :: set ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { * self_some = args . hash ; Ok ( ( ) ) } } ; MusicServiceRet :: set ( tmp ) } } ; serialize ( & ret , Infinite ) . unwrap ( ) } } Oct 16 05:09:38.574 INFO kablam! warning: enum is never used: `DummyEnum` Oct 16 05:09:38.574 INFO kablam! --> src/main.rs:14:13 Oct 16 05:09:38.574 INFO kablam! | Oct 16 05:09:38.574 INFO kablam! 14 | enum DummyEnum { Oct 16 05:09:38.574 INFO kablam! | ^^^^^^^^^^^^^^ Oct 16 05:09:38.574 INFO kablam! ... Oct 16 05:09:38.574 INFO kablam! 29 | / service!( Oct 16 05:09:38.574 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:38.574 INFO kablam! 31 | | some: u32 Oct 16 05:09:38.574 INFO kablam! 32 | | } Oct 16 05:09:38.574 INFO kablam! ... | Oct 16 05:09:38.574 INFO kablam! 47 | | } Oct 16 05:09:38.574 INFO kablam! 48 | | ); Oct 16 05:09:38.574 INFO kablam! | |__- in this macro invocation Oct 16 05:09:38.574 INFO kablam! | Oct 16 05:09:38.574 INFO kablam! = note: #[warn(dead_code)] on by default Oct 16 05:09:38.574 INFO kablam! Oct 16 05:09:38.576 INFO kablam! warning: variant `field` should have a camel case name such as `Field` Oct 16 05:09:38.576 INFO kablam! --> src/main.rs:15:17 Oct 16 05:09:38.576 INFO kablam! | Oct 16 05:09:38.576 INFO kablam! 15 | field = (stringify!(|$($x)*|), 0).1 Oct 16 05:09:38.576 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 16 05:09:38.576 INFO kablam! ... Oct 16 05:09:38.576 INFO kablam! 29 | / service!( Oct 16 05:09:38.576 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:38.576 INFO kablam! 31 | | some: u32 Oct 16 05:09:38.576 INFO kablam! 32 | | } Oct 16 05:09:38.576 INFO kablam! ... | Oct 16 05:09:38.576 INFO kablam! 47 | | } Oct 16 05:09:38.576 INFO kablam! 48 | | ); Oct 16 05:09:38.576 INFO kablam! | |__- in this macro invocation Oct 16 05:09:38.576 INFO kablam! | Oct 16 05:09:38.576 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 16 05:09:38.576 INFO kablam! Oct 16 05:09:38.912 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 13.39s Oct 16 05:09:38.912 INFO kablam! su: No module specific data is present Oct 16 05:09:40.051 INFO running `"docker" "rm" "-f" "78b487b14ac8c2f69df6b77e14cb5342e2a2d59056c994aa650e73e9bdafd04d"` Oct 16 05:09:40.367 INFO blam! 78b487b14ac8c2f69df6b77e14cb5342e2a2d59056c994aa650e73e9bdafd04d Oct 16 05:09:40.380 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen --no-run" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 16 05:09:40.815 INFO blam! 72e5c75431e1f074aeb5ea512d598bd97440a79dcf1a033e5c03fad79bd042e6 Oct 16 05:09:40.818 INFO running `"docker" "start" "-a" "72e5c75431e1f074aeb5ea512d598bd97440a79dcf1a033e5c03fad79bd042e6"` Oct 16 05:09:41.751 INFO kablam! usermod: no changes Oct 16 05:09:41.832 INFO kablam! Compiling jam v0.0.1 (/source) Oct 16 05:09:42.602 INFO blam! " struct MusicService { some : u32 , } impl Service for MusicService { fn get ( & self , hash : u32 ) -> Result < u32 , Error > { match args . hash { 0 => Ok ( * self . some ) , _ => Err ( Error :: WrongNumber ) , } } fn set ( & mut self , hash : u32 ) -> Result < ( ) , Error > { * self . some = args . hash ; Ok ( ( ) ) } } " Oct 16 05:09:42.611 INFO blam! # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceget { pub hash : u32 } # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceset { pub hash : u32 } pub struct MusicService { some : Arc < RefCell < u32 > > } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceArgs { get ( MusicServiceget ) , set ( MusicServiceset ) } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceRet { InvalidMethod , get ( Result < u32 , Error > ) , set ( Result < ( ) , Error > ) } impl Service for MusicService { fn process ( & mut self , input : & [ u8 ] ) -> Vec < u8 > { use bincode :: { serialize , deserialize , Infinite } ; let args : MusicServiceArgs = deserialize ( input ) . unwrap ( ) ; let mut ret : MusicServiceRet = MusicServiceRet :: InvalidMethod ; let ret = match args { MusicServiceArgs :: get ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { match args . hash { 0 => Ok ( * self_some ) , _ => Err ( Error :: WrongNumber ) , } } } ; MusicServiceRet :: get ( tmp ) } , MusicServiceArgs :: set ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { * self_some = args . hash ; Ok ( ( ) ) } } ; MusicServiceRet :: set ( tmp ) } } ; serialize ( & ret , Infinite ) . unwrap ( ) } } Oct 16 05:09:42.612 INFO blam! # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceget { pub hash : u32 } # [ derive ( Serialize , Deserialize ) ] pub struct MusicServiceset { pub hash : u32 } pub struct MusicService { some : Arc < RefCell < u32 > > } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceArgs { get ( MusicServiceget ) , set ( MusicServiceset ) } # [ derive ( Serialize , Deserialize ) ] pub enum MusicServiceRet { InvalidMethod , get ( Result < u32 , Error > ) , set ( Result < ( ) , Error > ) } impl Service for MusicService { fn process ( & mut self , input : & [ u8 ] ) -> Vec < u8 > { use bincode :: { serialize , deserialize , Infinite } ; let args : MusicServiceArgs = deserialize ( input ) . unwrap ( ) ; let mut ret : MusicServiceRet = MusicServiceRet :: InvalidMethod ; let ret = match args { MusicServiceArgs :: get ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { match args . hash { 0 => Ok ( * self_some ) , _ => Err ( Error :: WrongNumber ) , } } } ; MusicServiceRet :: get ( tmp ) } , MusicServiceArgs :: set ( args ) => { let tmp = { let mut self_some = self . some . borrow_mut ( ) ; { * self_some = args . hash ; Ok ( ( ) ) } } ; MusicServiceRet :: set ( tmp ) } } ; serialize ( & ret , Infinite ) . unwrap ( ) } } Oct 16 05:09:42.934 INFO kablam! warning: enum is never used: `DummyEnum` Oct 16 05:09:42.939 INFO kablam! --> src/main.rs:14:13 Oct 16 05:09:42.939 INFO kablam! | Oct 16 05:09:42.939 INFO kablam! 14 | enum DummyEnum { Oct 16 05:09:42.939 INFO kablam! | ^^^^^^^^^^^^^^ Oct 16 05:09:42.939 INFO kablam! ... Oct 16 05:09:42.939 INFO kablam! 29 | / service!( Oct 16 05:09:42.939 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:42.939 INFO kablam! 31 | | some: u32 Oct 16 05:09:42.939 INFO kablam! 32 | | } Oct 16 05:09:42.939 INFO kablam! ... | Oct 16 05:09:42.939 INFO kablam! 47 | | } Oct 16 05:09:42.939 INFO kablam! 48 | | ); Oct 16 05:09:42.939 INFO kablam! | |__- in this macro invocation Oct 16 05:09:42.939 INFO kablam! | Oct 16 05:09:42.939 INFO kablam! = note: #[warn(dead_code)] on by default Oct 16 05:09:42.939 INFO kablam! Oct 16 05:09:42.939 INFO kablam! warning: variant `field` should have a camel case name such as `Field` Oct 16 05:09:42.940 INFO kablam! --> src/main.rs:15:17 Oct 16 05:09:42.940 INFO kablam! | Oct 16 05:09:42.940 INFO kablam! 15 | field = (stringify!(|$($x)*|), 0).1 Oct 16 05:09:42.940 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 16 05:09:42.940 INFO kablam! ... Oct 16 05:09:42.940 INFO kablam! 29 | / service!( Oct 16 05:09:42.940 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:42.940 INFO kablam! 31 | | some: u32 Oct 16 05:09:42.940 INFO kablam! 32 | | } Oct 16 05:09:42.940 INFO kablam! ... | Oct 16 05:09:42.940 INFO kablam! 47 | | } Oct 16 05:09:42.940 INFO kablam! 48 | | ); Oct 16 05:09:42.940 INFO kablam! | |__- in this macro invocation Oct 16 05:09:42.940 INFO kablam! | Oct 16 05:09:42.940 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 16 05:09:42.940 INFO kablam! Oct 16 05:09:43.374 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.61s Oct 16 05:09:43.396 INFO kablam! su: No module specific data is present Oct 16 05:09:44.017 INFO running `"docker" "rm" "-f" "72e5c75431e1f074aeb5ea512d598bd97440a79dcf1a033e5c03fad79bd042e6"` Oct 16 05:09:44.298 INFO blam! 72e5c75431e1f074aeb5ea512d598bd97440a79dcf1a033e5c03fad79bd042e6 Oct 16 05:09:44.302 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 16 05:09:44.737 INFO blam! 89bcf615f8541462862c87d79ffe768ada7dc344ead7c1d34e32d7fbd1d385e8 Oct 16 05:09:44.739 INFO running `"docker" "start" "-a" "89bcf615f8541462862c87d79ffe768ada7dc344ead7c1d34e32d7fbd1d385e8"` Oct 16 05:09:45.639 INFO kablam! usermod: no changes Oct 16 05:09:45.736 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.05s Oct 16 05:09:45.748 INFO kablam! Running /target/debug/deps/jam-833edd7d613b5eaf Oct 16 05:09:45.748 INFO blam! Oct 16 05:09:45.748 INFO blam! running 0 tests Oct 16 05:09:45.748 INFO blam! Oct 16 05:09:45.748 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 16 05:09:45.748 INFO blam! Oct 16 05:09:45.750 INFO kablam! su: No module specific data is present Oct 16 05:09:46.191 INFO running `"docker" "rm" "-f" "89bcf615f8541462862c87d79ffe768ada7dc344ead7c1d34e32d7fbd1d385e8"` Oct 16 05:09:46.524 INFO blam! 89bcf615f8541462862c87d79ffe768ada7dc344ead7c1d34e32d7fbd1d385e8