Oct 16 18:24:41.802 INFO testing affine_transforms-0.2.0 against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 16 18:24:41.802 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 18:24:42.079 INFO blam! ef4e7e16c076a69f919d9319a5aeaf4a7eedf7f37f0a742850287a20854d5568 Oct 16 18:24:42.081 INFO running `"docker" "start" "-a" "ef4e7e16c076a69f919d9319a5aeaf4a7eedf7f37f0a742850287a20854d5568"` Oct 16 18:24:42.606 INFO kablam! usermod: no changes Oct 16 18:24:42.631 INFO kablam! Compiling affine_transforms v0.2.0 (/source) Oct 16 18:24:43.343 INFO kablam! warning: method `Zero` should have a snake case name such as `zero` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:138:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 138 | / pub fn Zero() -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 139 | | AffineMatrix::from_row_major(vec![0.0;16]) Oct 16 18:24:43.343 INFO kablam! 140 | | } Oct 16 18:24:43.343 INFO kablam! | |_____^ Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 16 18:24:43.343 INFO kablam! Oct 16 18:24:43.343 INFO kablam! warning: method `Identity` should have a snake case name such as `identity` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:142:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 142 | / pub fn Identity() -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 143 | | AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 144 | | i1: 1., j1: 0., k1: 0., w1: 0., Oct 16 18:24:43.343 INFO kablam! 145 | | i2: 0., j2: 1., k2: 0., w2: 0., Oct 16 18:24:43.343 INFO kablam! ... | Oct 16 18:24:43.343 INFO kablam! 148 | | } Oct 16 18:24:43.343 INFO kablam! 149 | | } Oct 16 18:24:43.343 INFO kablam! | |_____^ Oct 16 18:24:43.343 INFO kablam! Oct 16 18:24:43.343 INFO kablam! warning: method `Translation` should have a snake case name such as `translation` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:151:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 151 | / pub fn Translation(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 152 | | AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 153 | | i1: 1., j1: 0., k1: 0., w1: x , Oct 16 18:24:43.343 INFO kablam! 154 | | i2: 0., j2: 1., k2: 0., w2: y , Oct 16 18:24:43.343 INFO kablam! ... | Oct 16 18:24:43.343 INFO kablam! 157 | | } Oct 16 18:24:43.343 INFO kablam! 158 | | } Oct 16 18:24:43.343 INFO kablam! | |_____^ Oct 16 18:24:43.343 INFO kablam! Oct 16 18:24:43.343 INFO kablam! warning: method `RotationX` should have a snake case name such as `rotation_x` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:160:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 160 | / pub fn RotationX(theta : f64) -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 161 | | let c = theta.cos(); Oct 16 18:24:43.343 INFO kablam! 162 | | let s = theta.sin(); Oct 16 18:24:43.343 INFO kablam! 163 | | AffineMatrix { Oct 16 18:24:43.343 INFO kablam! ... | Oct 16 18:24:43.343 INFO kablam! 168 | | } Oct 16 18:24:43.343 INFO kablam! 169 | | } Oct 16 18:24:43.343 INFO kablam! | |_____^ Oct 16 18:24:43.343 INFO kablam! Oct 16 18:24:43.343 INFO kablam! warning: method `RotationY` should have a snake case name such as `rotation_y` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:171:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 171 | / pub fn RotationY(theta : f64) -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 172 | | let c = theta.cos(); Oct 16 18:24:43.343 INFO kablam! 173 | | let s = theta.sin(); Oct 16 18:24:43.343 INFO kablam! 174 | | AffineMatrix { Oct 16 18:24:43.343 INFO kablam! ... | Oct 16 18:24:43.343 INFO kablam! 179 | | } Oct 16 18:24:43.343 INFO kablam! 180 | | } Oct 16 18:24:43.343 INFO kablam! | |_____^ Oct 16 18:24:43.343 INFO kablam! Oct 16 18:24:43.343 INFO kablam! warning: method `RotationZ` should have a snake case name such as `rotation_z` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:182:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 182 | / pub fn RotationZ(theta : f64) -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 183 | | let c = theta.cos(); Oct 16 18:24:43.343 INFO kablam! 184 | | let s = theta.sin(); Oct 16 18:24:43.343 INFO kablam! 185 | | AffineMatrix { Oct 16 18:24:43.343 INFO kablam! ... | Oct 16 18:24:43.343 INFO kablam! 190 | | } Oct 16 18:24:43.343 INFO kablam! 191 | | } Oct 16 18:24:43.343 INFO kablam! | |_____^ Oct 16 18:24:43.343 INFO kablam! Oct 16 18:24:43.343 INFO kablam! warning: method `Scale` should have a snake case name such as `scale` Oct 16 18:24:43.343 INFO kablam! --> src/matrices.rs:193:5 Oct 16 18:24:43.343 INFO kablam! | Oct 16 18:24:43.343 INFO kablam! 193 | / pub fn Scale(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 194 | | AffineMatrix { Oct 16 18:24:43.343 INFO kablam! 195 | | i1: x , j1: 0., k1: 0., w1: 0., Oct 16 18:24:43.343 INFO kablam! 196 | | i2: 0., j2: y , k2: 0., w2: 0., Oct 16 18:24:43.344 INFO kablam! ... | Oct 16 18:24:43.344 INFO kablam! 199 | | } Oct 16 18:24:43.344 INFO kablam! 200 | | } Oct 16 18:24:43.344 INFO kablam! | |_____^ Oct 16 18:24:43.344 INFO kablam! Oct 16 18:24:43.344 INFO kablam! warning: method `UniformScale` should have a snake case name such as `uniform_scale` Oct 16 18:24:43.344 INFO kablam! --> src/matrices.rs:202:5 Oct 16 18:24:43.344 INFO kablam! | Oct 16 18:24:43.344 INFO kablam! 202 | / pub fn UniformScale(s : f64) -> AffineMatrix { Oct 16 18:24:43.344 INFO kablam! 203 | | AffineMatrix { Oct 16 18:24:43.344 INFO kablam! 204 | | i1: s , j1: 0., k1: 0., w1: 0., Oct 16 18:24:43.344 INFO kablam! 205 | | i2: 0., j2: s , k2: 0., w2: 0., Oct 16 18:24:43.344 INFO kablam! ... | Oct 16 18:24:43.344 INFO kablam! 208 | | } Oct 16 18:24:43.344 INFO kablam! 209 | | } Oct 16 18:24:43.344 INFO kablam! | |_____^ Oct 16 18:24:43.344 INFO kablam! Oct 16 18:24:43.575 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.95s Oct 16 18:24:43.576 INFO kablam! su: No module specific data is present Oct 16 18:24:43.917 INFO running `"docker" "rm" "-f" "ef4e7e16c076a69f919d9319a5aeaf4a7eedf7f37f0a742850287a20854d5568"` Oct 16 18:24:44.195 INFO blam! ef4e7e16c076a69f919d9319a5aeaf4a7eedf7f37f0a742850287a20854d5568 Oct 16 18:24:44.199 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 18:24:44.695 INFO blam! 17a483b5d0c53348fd4cc43eda1d439e7278808fb2798f0f61b2fe94de43831e Oct 16 18:24:44.697 INFO running `"docker" "start" "-a" "17a483b5d0c53348fd4cc43eda1d439e7278808fb2798f0f61b2fe94de43831e"` Oct 16 18:24:45.547 INFO kablam! usermod: no changes Oct 16 18:24:45.572 INFO kablam! Compiling affine_transforms v0.2.0 (/source) Oct 16 18:24:46.788 INFO kablam! warning: method `Zero` should have a snake case name such as `zero` Oct 16 18:24:46.788 INFO kablam! --> src/matrices.rs:138:5 Oct 16 18:24:46.788 INFO kablam! | Oct 16 18:24:46.789 INFO kablam! 138 | / pub fn Zero() -> AffineMatrix { Oct 16 18:24:46.789 INFO kablam! 139 | | AffineMatrix::from_row_major(vec![0.0;16]) Oct 16 18:24:46.789 INFO kablam! 140 | | } Oct 16 18:24:46.789 INFO kablam! | |_____^ Oct 16 18:24:46.790 INFO kablam! | Oct 16 18:24:46.790 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 16 18:24:46.791 INFO kablam! Oct 16 18:24:46.791 INFO kablam! warning: method `Identity` should have a snake case name such as `identity` Oct 16 18:24:46.791 INFO kablam! --> src/matrices.rs:142:5 Oct 16 18:24:46.795 INFO kablam! | Oct 16 18:24:46.795 INFO kablam! 142 | / pub fn Identity() -> AffineMatrix { Oct 16 18:24:46.795 INFO kablam! 143 | | AffineMatrix { Oct 16 18:24:46.795 INFO kablam! 144 | | i1: 1., j1: 0., k1: 0., w1: 0., Oct 16 18:24:46.796 INFO kablam! 145 | | i2: 0., j2: 1., k2: 0., w2: 0., Oct 16 18:24:46.796 INFO kablam! ... | Oct 16 18:24:46.796 INFO kablam! 148 | | } Oct 16 18:24:46.796 INFO kablam! 149 | | } Oct 16 18:24:46.797 INFO kablam! | |_____^ Oct 16 18:24:46.797 INFO kablam! Oct 16 18:24:46.797 INFO kablam! warning: method `Translation` should have a snake case name such as `translation` Oct 16 18:24:46.798 INFO kablam! --> src/matrices.rs:151:5 Oct 16 18:24:46.798 INFO kablam! | Oct 16 18:24:46.798 INFO kablam! 151 | / pub fn Translation(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:46.799 INFO kablam! 152 | | AffineMatrix { Oct 16 18:24:46.799 INFO kablam! 153 | | i1: 1., j1: 0., k1: 0., w1: x , Oct 16 18:24:46.799 INFO kablam! 154 | | i2: 0., j2: 1., k2: 0., w2: y , Oct 16 18:24:46.800 INFO kablam! ... | Oct 16 18:24:46.800 INFO kablam! 157 | | } Oct 16 18:24:46.800 INFO kablam! 158 | | } Oct 16 18:24:46.800 INFO kablam! | |_____^ Oct 16 18:24:46.801 INFO kablam! Oct 16 18:24:46.801 INFO kablam! warning: method `RotationX` should have a snake case name such as `rotation_x` Oct 16 18:24:46.801 INFO kablam! --> src/matrices.rs:160:5 Oct 16 18:24:46.802 INFO kablam! | Oct 16 18:24:46.802 INFO kablam! 160 | / pub fn RotationX(theta : f64) -> AffineMatrix { Oct 16 18:24:46.802 INFO kablam! 161 | | let c = theta.cos(); Oct 16 18:24:46.803 INFO kablam! 162 | | let s = theta.sin(); Oct 16 18:24:46.803 INFO kablam! 163 | | AffineMatrix { Oct 16 18:24:46.803 INFO kablam! ... | Oct 16 18:24:46.803 INFO kablam! 168 | | } Oct 16 18:24:46.804 INFO kablam! 169 | | } Oct 16 18:24:46.804 INFO kablam! | |_____^ Oct 16 18:24:46.804 INFO kablam! Oct 16 18:24:46.804 INFO kablam! warning: method `RotationY` should have a snake case name such as `rotation_y` Oct 16 18:24:46.805 INFO kablam! --> src/matrices.rs:171:5 Oct 16 18:24:46.805 INFO kablam! | Oct 16 18:24:46.805 INFO kablam! 171 | / pub fn RotationY(theta : f64) -> AffineMatrix { Oct 16 18:24:46.806 INFO kablam! 172 | | let c = theta.cos(); Oct 16 18:24:46.806 INFO kablam! 173 | | let s = theta.sin(); Oct 16 18:24:46.806 INFO kablam! 174 | | AffineMatrix { Oct 16 18:24:46.806 INFO kablam! ... | Oct 16 18:24:46.807 INFO kablam! 179 | | } Oct 16 18:24:46.807 INFO kablam! 180 | | } Oct 16 18:24:46.807 INFO kablam! | |_____^ Oct 16 18:24:46.808 INFO kablam! Oct 16 18:24:46.808 INFO kablam! warning: method `RotationZ` should have a snake case name such as `rotation_z` Oct 16 18:24:46.808 INFO kablam! --> src/matrices.rs:182:5 Oct 16 18:24:46.808 INFO kablam! | Oct 16 18:24:46.809 INFO kablam! 182 | / pub fn RotationZ(theta : f64) -> AffineMatrix { Oct 16 18:24:46.809 INFO kablam! 183 | | let c = theta.cos(); Oct 16 18:24:46.809 INFO kablam! 184 | | let s = theta.sin(); Oct 16 18:24:46.809 INFO kablam! 185 | | AffineMatrix { Oct 16 18:24:46.810 INFO kablam! ... | Oct 16 18:24:46.810 INFO kablam! 190 | | } Oct 16 18:24:46.810 INFO kablam! 191 | | } Oct 16 18:24:46.810 INFO kablam! | |_____^ Oct 16 18:24:46.811 INFO kablam! Oct 16 18:24:46.811 INFO kablam! warning: method `Scale` should have a snake case name such as `scale` Oct 16 18:24:46.811 INFO kablam! --> src/matrices.rs:193:5 Oct 16 18:24:46.812 INFO kablam! | Oct 16 18:24:46.812 INFO kablam! 193 | / pub fn Scale(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 16 18:24:46.812 INFO kablam! 194 | | AffineMatrix { Oct 16 18:24:46.812 INFO kablam! 195 | | i1: x , j1: 0., k1: 0., w1: 0., Oct 16 18:24:46.813 INFO kablam! 196 | | i2: 0., j2: y , k2: 0., w2: 0., Oct 16 18:24:46.813 INFO kablam! ... | Oct 16 18:24:46.813 INFO kablam! 199 | | } Oct 16 18:24:46.814 INFO kablam! 200 | | } Oct 16 18:24:46.814 INFO kablam! | |_____^ Oct 16 18:24:46.814 INFO kablam! Oct 16 18:24:46.815 INFO kablam! warning: method `UniformScale` should have a snake case name such as `uniform_scale` Oct 16 18:24:46.815 INFO kablam! --> src/matrices.rs:202:5 Oct 16 18:24:46.815 INFO kablam! | Oct 16 18:24:46.815 INFO kablam! 202 | / pub fn UniformScale(s : f64) -> AffineMatrix { Oct 16 18:24:46.816 INFO kablam! 203 | | AffineMatrix { Oct 16 18:24:46.816 INFO kablam! 204 | | i1: s , j1: 0., k1: 0., w1: 0., Oct 16 18:24:46.816 INFO kablam! 205 | | i2: 0., j2: s , k2: 0., w2: 0., Oct 16 18:24:46.817 INFO kablam! ... | Oct 16 18:24:46.817 INFO kablam! 208 | | } Oct 16 18:24:46.817 INFO kablam! 209 | | } Oct 16 18:24:46.817 INFO kablam! | |_____^ Oct 16 18:24:46.818 INFO kablam! Oct 16 18:24:47.491 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.92s Oct 16 18:24:47.491 INFO kablam! su: No module specific data is present Oct 16 18:24:47.769 INFO running `"docker" "rm" "-f" "17a483b5d0c53348fd4cc43eda1d439e7278808fb2798f0f61b2fe94de43831e"` Oct 16 18:24:47.879 INFO blam! 17a483b5d0c53348fd4cc43eda1d439e7278808fb2798f0f61b2fe94de43831e Oct 16 18:24:47.882 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 18:24:48.069 INFO blam! f039b0e768fd8c00e3a2ce0e7fff9547b420d37f5187551afc31f7e454549f4a Oct 16 18:24:48.071 INFO running `"docker" "start" "-a" "f039b0e768fd8c00e3a2ce0e7fff9547b420d37f5187551afc31f7e454549f4a"` Oct 16 18:24:48.448 INFO kablam! usermod: no changes Oct 16 18:24:48.467 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.00s Oct 16 18:24:48.468 INFO kablam! Running /target/debug/deps/affine_transforms-22a8b4da8d14eef2 Oct 16 18:24:48.479 INFO blam! Oct 16 18:24:48.479 INFO blam! running 26 tests Oct 16 18:24:48.479 INFO blam! test unit_tests::matrix_index_tests::tests::column_major_ctor_with_incrementing ... ok Oct 16 18:24:48.479 INFO blam! test unit_tests::matrix_index_tests::tests::row_major_ctor_with_incrementing ... ok Oct 16 18:24:48.479 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_x_matrix ... ok Oct 16 18:24:48.480 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_y_matrix ... ok Oct 16 18:24:48.480 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_z_matrix ... ok Oct 16 18:24:48.481 INFO blam! test unit_tests::matrix_op_tests::tests::primitives_multiply_as_matrices ... ok Oct 16 18:24:48.481 INFO blam! test unit_tests::vector_op_tests::tests::add_one_plus_one ... ok Oct 16 18:24:48.481 INFO blam! test unit_tests::vector_op_tests::tests::cross_product ... ok Oct 16 18:24:48.481 INFO blam! test unit_tests::vector_op_tests::tests::cross_product_normal ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::sub_one_minus_one ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::triangle_add ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::triangle_scale ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::unary_sub ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::unit_magnitude_squared ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::unit_triangle ... ok Oct 16 18:24:48.482 INFO blam! test unit_tests::vector_op_tests::tests::unit_vector ... ok Oct 16 18:24:48.483 INFO blam! test unit_tests::vector_op_tests::tests::v3_magnitude ... ok Oct 16 18:24:48.483 INFO blam! test unit_tests::vector_op_tests::tests::v3_magnitude_squared ... ok Oct 16 18:24:48.483 INFO blam! test unit_tests::vector_op_tests::tests::vector_scale ... ok Oct 16 18:24:48.483 INFO blam! test unit_tests::matrix_op_tests::tests::translate ... ok Oct 16 18:24:48.484 INFO blam! test unit_tests::matrix_index_tests::tests::row_major_ctor_with_ones ... ok Oct 16 18:24:48.484 INFO blam! test unit_tests::matrix_index_tests::tests::column_major_ctor_with_ones ... ok Oct 16 18:24:48.484 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_perspective ... ok Oct 16 18:24:48.484 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_axis_tour ... ok Oct 16 18:24:48.484 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_affine_identity ... ok Oct 16 18:24:48.484 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_rotation ... ok Oct 16 18:24:48.484 INFO blam! Oct 16 18:24:48.484 INFO blam! test result: ok. 26 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 16 18:24:48.484 INFO blam! Oct 16 18:24:48.485 INFO kablam! Doc-tests affine_transforms Oct 16 18:24:49.389 INFO blam! Oct 16 18:24:49.389 INFO blam! running 0 tests Oct 16 18:24:49.389 INFO blam! Oct 16 18:24:49.389 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 16 18:24:49.389 INFO blam! Oct 16 18:24:49.396 INFO kablam! su: No module specific data is present Oct 16 18:24:49.673 INFO running `"docker" "rm" "-f" "f039b0e768fd8c00e3a2ce0e7fff9547b420d37f5187551afc31f7e454549f4a"` Oct 16 18:24:49.755 INFO blam! f039b0e768fd8c00e3a2ce0e7fff9547b420d37f5187551afc31f7e454549f4a