Oct 16 05:09:25.312 INFO testing jam-0.0.1 against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 16 05:09:25.312 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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.487 INFO blam! c646fa475d8c3b4aa0353913a3120afe9ce52cf83e2f3a80bec5e42071c93bdd Oct 16 05:09:25.498 INFO running `"docker" "start" "-a" "c646fa475d8c3b4aa0353913a3120afe9ce52cf83e2f3a80bec5e42071c93bdd"` Oct 16 05:09:26.067 INFO kablam! usermod: no changes Oct 16 05:09:26.127 INFO kablam! Compiling jam_derive v0.0.1 Oct 16 05:09:26.127 INFO kablam! Compiling bincode v0.7.0 Oct 16 05:09:32.387 INFO kablam! Compiling jam v0.0.1 (/source) Oct 16 05:09:33.335 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:33.340 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:33.342 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:33.622 INFO kablam! warning: enum is never used: `DummyEnum` Oct 16 05:09:33.622 INFO kablam! --> src/main.rs:14:13 Oct 16 05:09:33.622 INFO kablam! | Oct 16 05:09:33.622 INFO kablam! 14 | enum DummyEnum { Oct 16 05:09:33.622 INFO kablam! | ^^^^^^^^^^^^^^ Oct 16 05:09:33.622 INFO kablam! ... Oct 16 05:09:33.622 INFO kablam! 29 | / service!( Oct 16 05:09:33.622 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:33.622 INFO kablam! 31 | | some: u32 Oct 16 05:09:33.622 INFO kablam! 32 | | } Oct 16 05:09:33.622 INFO kablam! ... | Oct 16 05:09:33.622 INFO kablam! 47 | | } Oct 16 05:09:33.622 INFO kablam! 48 | | ); Oct 16 05:09:33.622 INFO kablam! | |__- in this macro invocation Oct 16 05:09:33.622 INFO kablam! | Oct 16 05:09:33.622 INFO kablam! = note: #[warn(dead_code)] on by default Oct 16 05:09:33.622 INFO kablam! Oct 16 05:09:33.631 INFO kablam! warning: variant `field` should have a camel case name such as `Field` Oct 16 05:09:33.631 INFO kablam! --> src/main.rs:15:17 Oct 16 05:09:33.631 INFO kablam! | Oct 16 05:09:33.631 INFO kablam! 15 | field = (stringify!(|$($x)*|), 0).1 Oct 16 05:09:33.631 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 16 05:09:33.631 INFO kablam! ... Oct 16 05:09:33.631 INFO kablam! 29 | / service!( Oct 16 05:09:33.631 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:33.631 INFO kablam! 31 | | some: u32 Oct 16 05:09:33.631 INFO kablam! 32 | | } Oct 16 05:09:33.631 INFO kablam! ... | Oct 16 05:09:33.631 INFO kablam! 47 | | } Oct 16 05:09:33.631 INFO kablam! 48 | | ); Oct 16 05:09:33.631 INFO kablam! | |__- in this macro invocation Oct 16 05:09:33.631 INFO kablam! | Oct 16 05:09:33.631 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 16 05:09:33.631 INFO kablam! Oct 16 05:09:34.131 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 8.04s Oct 16 05:09:34.131 INFO kablam! su: No module specific data is present Oct 16 05:09:34.995 INFO running `"docker" "rm" "-f" "c646fa475d8c3b4aa0353913a3120afe9ce52cf83e2f3a80bec5e42071c93bdd"` Oct 16 05:09:35.275 INFO blam! c646fa475d8c3b4aa0353913a3120afe9ce52cf83e2f3a80bec5e42071c93bdd Oct 16 05:09:35.278 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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:35.713 INFO blam! d12e8e87a91fb9a228c0d75c0c86902776a6256fffadf5b077b846452332fc97 Oct 16 05:09:35.714 INFO running `"docker" "start" "-a" "d12e8e87a91fb9a228c0d75c0c86902776a6256fffadf5b077b846452332fc97"` Oct 16 05:09:36.743 INFO kablam! usermod: no changes Oct 16 05:09:36.811 INFO kablam! Compiling jam v0.0.1 (/source) Oct 16 05:09:37.731 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:37.739 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:37.739 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.043 INFO kablam! warning: enum is never used: `DummyEnum` Oct 16 05:09:38.043 INFO kablam! --> src/main.rs:14:13 Oct 16 05:09:38.043 INFO kablam! | Oct 16 05:09:38.043 INFO kablam! 14 | enum DummyEnum { Oct 16 05:09:38.043 INFO kablam! | ^^^^^^^^^^^^^^ Oct 16 05:09:38.043 INFO kablam! ... Oct 16 05:09:38.043 INFO kablam! 29 | / service!( Oct 16 05:09:38.043 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:38.043 INFO kablam! 31 | | some: u32 Oct 16 05:09:38.043 INFO kablam! 32 | | } Oct 16 05:09:38.043 INFO kablam! ... | Oct 16 05:09:38.043 INFO kablam! 47 | | } Oct 16 05:09:38.043 INFO kablam! 48 | | ); Oct 16 05:09:38.043 INFO kablam! | |__- in this macro invocation Oct 16 05:09:38.043 INFO kablam! | Oct 16 05:09:38.043 INFO kablam! = note: #[warn(dead_code)] on by default Oct 16 05:09:38.043 INFO kablam! Oct 16 05:09:38.046 INFO kablam! warning: variant `field` should have a camel case name such as `Field` Oct 16 05:09:38.046 INFO kablam! --> src/main.rs:15:17 Oct 16 05:09:38.046 INFO kablam! | Oct 16 05:09:38.046 INFO kablam! 15 | field = (stringify!(|$($x)*|), 0).1 Oct 16 05:09:38.046 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 16 05:09:38.046 INFO kablam! ... Oct 16 05:09:38.046 INFO kablam! 29 | / service!( Oct 16 05:09:38.046 INFO kablam! 30 | | struct MusicService { Oct 16 05:09:38.046 INFO kablam! 31 | | some: u32 Oct 16 05:09:38.046 INFO kablam! 32 | | } Oct 16 05:09:38.046 INFO kablam! ... | Oct 16 05:09:38.046 INFO kablam! 47 | | } Oct 16 05:09:38.046 INFO kablam! 48 | | ); Oct 16 05:09:38.046 INFO kablam! | |__- in this macro invocation Oct 16 05:09:38.046 INFO kablam! | Oct 16 05:09:38.046 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 16 05:09:38.046 INFO kablam! Oct 16 05:09:38.496 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.73s Oct 16 05:09:38.498 INFO kablam! su: No module specific data is present Oct 16 05:09:39.470 INFO running `"docker" "rm" "-f" "d12e8e87a91fb9a228c0d75c0c86902776a6256fffadf5b077b846452332fc97"` Oct 16 05:09:39.746 INFO blam! d12e8e87a91fb9a228c0d75c0c86902776a6256fffadf5b077b846452332fc97 Oct 16 05:09:39.749 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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:40.131 INFO blam! 3c5ecb63bb872f2e8b49467a3315f1f09254cb8d0cea7ccbc23797b7b886c3aa Oct 16 05:09:40.139 INFO running `"docker" "start" "-a" "3c5ecb63bb872f2e8b49467a3315f1f09254cb8d0cea7ccbc23797b7b886c3aa"` Oct 16 05:09:41.335 INFO kablam! usermod: no changes Oct 16 05:09:41.395 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.03s Oct 16 05:09:41.397 INFO kablam! Running /target/debug/deps/jam-5dc44cb2e7e7ce21 Oct 16 05:09:41.408 INFO blam! Oct 16 05:09:41.408 INFO blam! running 0 tests Oct 16 05:09:41.408 INFO blam! Oct 16 05:09:41.408 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 16 05:09:41.408 INFO blam! Oct 16 05:09:41.411 INFO kablam! su: No module specific data is present Oct 16 05:09:42.353 INFO running `"docker" "rm" "-f" "3c5ecb63bb872f2e8b49467a3315f1f09254cb8d0cea7ccbc23797b7b886c3aa"` Oct 16 05:09:42.607 INFO blam! 3c5ecb63bb872f2e8b49467a3315f1f09254cb8d0cea7ccbc23797b7b886c3aa