Oct 16 18:24:41.671 INFO testing affine_transforms-0.2.0 against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 16 18:24:41.671 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/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 18:24:41.975 INFO blam! 8c4a189b87af0b74282c51a4633609121abfb412c6052878130460290dd57be5 Oct 16 18:24:41.979 INFO running `"docker" "start" "-a" "8c4a189b87af0b74282c51a4633609121abfb412c6052878130460290dd57be5"` Oct 16 18:24:42.491 INFO kablam! usermod: no changes Oct 16 18:24:42.515 INFO kablam! Compiling affine_transforms v0.2.0 (/source) Oct 16 18:24:43.239 INFO kablam! warning: method `Zero` should have a snake case name such as `zero` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:138:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! 138 | / pub fn Zero() -> AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 139 | | AffineMatrix::from_row_major(vec![0.0;16]) Oct 16 18:24:43.239 INFO kablam! 140 | | } Oct 16 18:24:43.239 INFO kablam! | |_____^ Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 16 18:24:43.239 INFO kablam! Oct 16 18:24:43.239 INFO kablam! warning: method `Identity` should have a snake case name such as `identity` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:142:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! 142 | / pub fn Identity() -> AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 143 | | AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 144 | | i1: 1., j1: 0., k1: 0., w1: 0., Oct 16 18:24:43.239 INFO kablam! 145 | | i2: 0., j2: 1., k2: 0., w2: 0., Oct 16 18:24:43.239 INFO kablam! ... | Oct 16 18:24:43.239 INFO kablam! 148 | | } Oct 16 18:24:43.239 INFO kablam! 149 | | } Oct 16 18:24:43.239 INFO kablam! | |_____^ Oct 16 18:24:43.239 INFO kablam! Oct 16 18:24:43.239 INFO kablam! warning: method `Translation` should have a snake case name such as `translation` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:151:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! 151 | / pub fn Translation(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 152 | | AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 153 | | i1: 1., j1: 0., k1: 0., w1: x , Oct 16 18:24:43.239 INFO kablam! 154 | | i2: 0., j2: 1., k2: 0., w2: y , Oct 16 18:24:43.239 INFO kablam! ... | Oct 16 18:24:43.239 INFO kablam! 157 | | } Oct 16 18:24:43.239 INFO kablam! 158 | | } Oct 16 18:24:43.239 INFO kablam! | |_____^ Oct 16 18:24:43.239 INFO kablam! Oct 16 18:24:43.239 INFO kablam! warning: method `RotationX` should have a snake case name such as `rotation_x` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:160:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! 160 | / pub fn RotationX(theta : f64) -> AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 161 | | let c = theta.cos(); Oct 16 18:24:43.239 INFO kablam! 162 | | let s = theta.sin(); Oct 16 18:24:43.239 INFO kablam! 163 | | AffineMatrix { Oct 16 18:24:43.239 INFO kablam! ... | Oct 16 18:24:43.239 INFO kablam! 168 | | } Oct 16 18:24:43.239 INFO kablam! 169 | | } Oct 16 18:24:43.239 INFO kablam! | |_____^ Oct 16 18:24:43.239 INFO kablam! Oct 16 18:24:43.239 INFO kablam! warning: method `RotationY` should have a snake case name such as `rotation_y` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:171:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! 171 | / pub fn RotationY(theta : f64) -> AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 172 | | let c = theta.cos(); Oct 16 18:24:43.239 INFO kablam! 173 | | let s = theta.sin(); Oct 16 18:24:43.239 INFO kablam! 174 | | AffineMatrix { Oct 16 18:24:43.239 INFO kablam! ... | Oct 16 18:24:43.239 INFO kablam! 179 | | } Oct 16 18:24:43.239 INFO kablam! 180 | | } Oct 16 18:24:43.239 INFO kablam! | |_____^ Oct 16 18:24:43.239 INFO kablam! Oct 16 18:24:43.239 INFO kablam! warning: method `RotationZ` should have a snake case name such as `rotation_z` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:182:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.239 INFO kablam! 182 | / pub fn RotationZ(theta : f64) -> AffineMatrix { Oct 16 18:24:43.239 INFO kablam! 183 | | let c = theta.cos(); Oct 16 18:24:43.239 INFO kablam! 184 | | let s = theta.sin(); Oct 16 18:24:43.239 INFO kablam! 185 | | AffineMatrix { Oct 16 18:24:43.239 INFO kablam! ... | Oct 16 18:24:43.239 INFO kablam! 190 | | } Oct 16 18:24:43.239 INFO kablam! 191 | | } Oct 16 18:24:43.239 INFO kablam! | |_____^ Oct 16 18:24:43.239 INFO kablam! Oct 16 18:24:43.239 INFO kablam! warning: method `Scale` should have a snake case name such as `scale` Oct 16 18:24:43.239 INFO kablam! --> src/matrices.rs:193:5 Oct 16 18:24:43.239 INFO kablam! | Oct 16 18:24:43.240 INFO kablam! 193 | / pub fn Scale(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:43.240 INFO kablam! 194 | | AffineMatrix { Oct 16 18:24:43.240 INFO kablam! 195 | | i1: x , j1: 0., k1: 0., w1: 0., Oct 16 18:24:43.240 INFO kablam! 196 | | i2: 0., j2: y , k2: 0., w2: 0., Oct 16 18:24:43.240 INFO kablam! ... | Oct 16 18:24:43.240 INFO kablam! 199 | | } Oct 16 18:24:43.240 INFO kablam! 200 | | } Oct 16 18:24:43.240 INFO kablam! | |_____^ Oct 16 18:24:43.240 INFO kablam! Oct 16 18:24:43.240 INFO kablam! warning: method `UniformScale` should have a snake case name such as `uniform_scale` Oct 16 18:24:43.240 INFO kablam! --> src/matrices.rs:202:5 Oct 16 18:24:43.240 INFO kablam! | Oct 16 18:24:43.240 INFO kablam! 202 | / pub fn UniformScale(s : f64) -> AffineMatrix { Oct 16 18:24:43.240 INFO kablam! 203 | | AffineMatrix { Oct 16 18:24:43.240 INFO kablam! 204 | | i1: s , j1: 0., k1: 0., w1: 0., Oct 16 18:24:43.240 INFO kablam! 205 | | i2: 0., j2: s , k2: 0., w2: 0., Oct 16 18:24:43.240 INFO kablam! ... | Oct 16 18:24:43.240 INFO kablam! 208 | | } Oct 16 18:24:43.240 INFO kablam! 209 | | } Oct 16 18:24:43.240 INFO kablam! | |_____^ Oct 16 18:24:43.240 INFO kablam! Oct 16 18:24:43.556 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.05s Oct 16 18:24:43.559 INFO kablam! su: No module specific data is present Oct 16 18:24:43.953 INFO running `"docker" "rm" "-f" "8c4a189b87af0b74282c51a4633609121abfb412c6052878130460290dd57be5"` Oct 16 18:24:44.271 INFO blam! 8c4a189b87af0b74282c51a4633609121abfb412c6052878130460290dd57be5 Oct 16 18:24:44.277 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/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 18:24:44.764 INFO blam! eb9e9a703020e950ef0d8c038322d93bcc01d5b2f9e4048f14f6ecc1a1de6a89 Oct 16 18:24:44.775 INFO running `"docker" "start" "-a" "eb9e9a703020e950ef0d8c038322d93bcc01d5b2f9e4048f14f6ecc1a1de6a89"` Oct 16 18:24:45.828 INFO kablam! usermod: no changes Oct 16 18:24:45.915 INFO kablam! Compiling affine_transforms v0.2.0 (/source) Oct 16 18:24:47.035 INFO kablam! warning: method `Zero` should have a snake case name such as `zero` Oct 16 18:24:47.035 INFO kablam! --> src/matrices.rs:138:5 Oct 16 18:24:47.035 INFO kablam! | Oct 16 18:24:47.035 INFO kablam! 138 | / pub fn Zero() -> AffineMatrix { Oct 16 18:24:47.035 INFO kablam! 139 | | AffineMatrix::from_row_major(vec![0.0;16]) Oct 16 18:24:47.035 INFO kablam! 140 | | } Oct 16 18:24:47.035 INFO kablam! | |_____^ Oct 16 18:24:47.035 INFO kablam! | Oct 16 18:24:47.035 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 16 18:24:47.035 INFO kablam! Oct 16 18:24:47.035 INFO kablam! warning: method `Identity` should have a snake case name such as `identity` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:142:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 142 | / pub fn Identity() -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 143 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 144 | | i1: 1., j1: 0., k1: 0., w1: 0., Oct 16 18:24:47.036 INFO kablam! 145 | | i2: 0., j2: 1., k2: 0., w2: 0., Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 148 | | } Oct 16 18:24:47.036 INFO kablam! 149 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.036 INFO kablam! Oct 16 18:24:47.036 INFO kablam! warning: method `Translation` should have a snake case name such as `translation` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:151:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 151 | / pub fn Translation(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 152 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 153 | | i1: 1., j1: 0., k1: 0., w1: x , Oct 16 18:24:47.036 INFO kablam! 154 | | i2: 0., j2: 1., k2: 0., w2: y , Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 157 | | } Oct 16 18:24:47.036 INFO kablam! 158 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.036 INFO kablam! Oct 16 18:24:47.036 INFO kablam! warning: method `RotationX` should have a snake case name such as `rotation_x` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:160:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 160 | / pub fn RotationX(theta : f64) -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 161 | | let c = theta.cos(); Oct 16 18:24:47.036 INFO kablam! 162 | | let s = theta.sin(); Oct 16 18:24:47.036 INFO kablam! 163 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 168 | | } Oct 16 18:24:47.036 INFO kablam! 169 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.036 INFO kablam! Oct 16 18:24:47.036 INFO kablam! warning: method `RotationY` should have a snake case name such as `rotation_y` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:171:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 171 | / pub fn RotationY(theta : f64) -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 172 | | let c = theta.cos(); Oct 16 18:24:47.036 INFO kablam! 173 | | let s = theta.sin(); Oct 16 18:24:47.036 INFO kablam! 174 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 179 | | } Oct 16 18:24:47.036 INFO kablam! 180 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.036 INFO kablam! Oct 16 18:24:47.036 INFO kablam! warning: method `RotationZ` should have a snake case name such as `rotation_z` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:182:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 182 | / pub fn RotationZ(theta : f64) -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 183 | | let c = theta.cos(); Oct 16 18:24:47.036 INFO kablam! 184 | | let s = theta.sin(); Oct 16 18:24:47.036 INFO kablam! 185 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 190 | | } Oct 16 18:24:47.036 INFO kablam! 191 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.036 INFO kablam! Oct 16 18:24:47.036 INFO kablam! warning: method `Scale` should have a snake case name such as `scale` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:193:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 193 | / pub fn Scale(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 194 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 195 | | i1: x , j1: 0., k1: 0., w1: 0., Oct 16 18:24:47.036 INFO kablam! 196 | | i2: 0., j2: y , k2: 0., w2: 0., Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 199 | | } Oct 16 18:24:47.036 INFO kablam! 200 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.036 INFO kablam! Oct 16 18:24:47.036 INFO kablam! warning: method `UniformScale` should have a snake case name such as `uniform_scale` Oct 16 18:24:47.036 INFO kablam! --> src/matrices.rs:202:5 Oct 16 18:24:47.036 INFO kablam! | Oct 16 18:24:47.036 INFO kablam! 202 | / pub fn UniformScale(s : f64) -> AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 203 | | AffineMatrix { Oct 16 18:24:47.036 INFO kablam! 204 | | i1: s , j1: 0., k1: 0., w1: 0., Oct 16 18:24:47.036 INFO kablam! 205 | | i2: 0., j2: s , k2: 0., w2: 0., Oct 16 18:24:47.036 INFO kablam! ... | Oct 16 18:24:47.036 INFO kablam! 208 | | } Oct 16 18:24:47.036 INFO kablam! 209 | | } Oct 16 18:24:47.036 INFO kablam! | |_____^ Oct 16 18:24:47.037 INFO kablam! Oct 16 18:24:47.648 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.79s Oct 16 18:24:47.650 INFO kablam! su: No module specific data is present Oct 16 18:24:47.864 INFO running `"docker" "rm" "-f" "eb9e9a703020e950ef0d8c038322d93bcc01d5b2f9e4048f14f6ecc1a1de6a89"` Oct 16 18:24:47.993 INFO blam! eb9e9a703020e950ef0d8c038322d93bcc01d5b2f9e4048f14f6ecc1a1de6a89 Oct 16 18:24:47.995 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/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 18:24:48.142 INFO blam! 0c8f388ee586827b65b25bebd75b1a1e0754b00def1c4c8a58d94538c5f32e40 Oct 16 18:24:48.144 INFO running `"docker" "start" "-a" "0c8f388ee586827b65b25bebd75b1a1e0754b00def1c4c8a58d94538c5f32e40"` Oct 16 18:24:48.513 INFO kablam! usermod: no changes Oct 16 18:24:48.555 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 16 18:24:48.555 INFO blam! Oct 16 18:24:48.555 INFO kablam! Running /target/debug/deps/affine_transforms-1922423dcdfcbacd Oct 16 18:24:48.555 INFO blam! running 26 tests Oct 16 18:24:48.555 INFO kablam! Doc-tests affine_transforms Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_affine_identity ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_index_tests::tests::column_major_ctor_with_ones ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_index_tests::tests::row_major_ctor_with_incrementing ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_index_tests::tests::row_major_ctor_with_ones ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_rotation ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_index_tests::tests::column_major_ctor_with_incrementing ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_z_matrix ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::primitives_multiply_as_matrices ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_y_matrix ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_x_matrix ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::add_one_plus_one ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::translate ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_axis_tour ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_perspective ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::sub_one_minus_one ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::triangle_add ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::triangle_scale ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::unary_sub ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::unit_magnitude_squared ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::v3_magnitude ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::unit_triangle ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::unit_vector ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::cross_product ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::v3_magnitude_squared ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::cross_product_normal ... ok Oct 16 18:24:48.555 INFO blam! test unit_tests::vector_op_tests::tests::vector_scale ... ok Oct 16 18:24:48.555 INFO blam! Oct 16 18:24:48.555 INFO blam! test result: ok. 26 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 16 18:24:48.555 INFO blam! Oct 16 18:24:49.492 INFO blam! Oct 16 18:24:49.492 INFO blam! running 0 tests Oct 16 18:24:49.492 INFO blam! Oct 16 18:24:49.492 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 16 18:24:49.492 INFO blam! Oct 16 18:24:49.500 INFO kablam! su: No module specific data is present Oct 16 18:24:49.776 INFO running `"docker" "rm" "-f" "0c8f388ee586827b65b25bebd75b1a1e0754b00def1c4c8a58d94538c5f32e40"` Oct 16 18:24:49.860 INFO blam! 0c8f388ee586827b65b25bebd75b1a1e0754b00def1c4c8a58d94538c5f32e40