Oct 12 06:26:49.620 INFO testing affine_transforms-0.2.0 against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling Oct 12 06:26:49.620 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-5/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/rustdoc-test-static-cling/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 12 06:26:49.878 INFO blam! 00442fe278f8f646c10a46c0ea9a65d4346a4574c19a04d1f2c30a31ea26973a Oct 12 06:26:49.880 INFO running `"docker" "start" "-a" "00442fe278f8f646c10a46c0ea9a65d4346a4574c19a04d1f2c30a31ea26973a"` Oct 12 06:26:50.736 INFO kablam! usermod: no changes Oct 12 06:26:50.811 INFO kablam! Compiling affine_transforms v0.2.0 (/source) Oct 12 06:26:51.217 INFO kablam! warning: method `Zero` should have a snake case name such as `zero` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:138:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 138 | / pub fn Zero() -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 139 | | AffineMatrix::from_row_major(vec![0.0;16]) Oct 12 06:26:51.217 INFO kablam! 140 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `Identity` should have a snake case name such as `identity` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:142:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 142 | / pub fn Identity() -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 143 | | AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 144 | | i1: 1., j1: 0., k1: 0., w1: 0., Oct 12 06:26:51.217 INFO kablam! 145 | | i2: 0., j2: 1., k2: 0., w2: 0., Oct 12 06:26:51.217 INFO kablam! ... | Oct 12 06:26:51.217 INFO kablam! 148 | | } Oct 12 06:26:51.217 INFO kablam! 149 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `Translation` should have a snake case name such as `translation` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:151:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 151 | / pub fn Translation(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 152 | | AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 153 | | i1: 1., j1: 0., k1: 0., w1: x , Oct 12 06:26:51.217 INFO kablam! 154 | | i2: 0., j2: 1., k2: 0., w2: y , Oct 12 06:26:51.217 INFO kablam! ... | Oct 12 06:26:51.217 INFO kablam! 157 | | } Oct 12 06:26:51.217 INFO kablam! 158 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `RotationX` should have a snake case name such as `rotation_x` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:160:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 160 | / pub fn RotationX(theta : f64) -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 161 | | let c = theta.cos(); Oct 12 06:26:51.217 INFO kablam! 162 | | let s = theta.sin(); Oct 12 06:26:51.217 INFO kablam! 163 | | AffineMatrix { Oct 12 06:26:51.217 INFO kablam! ... | Oct 12 06:26:51.217 INFO kablam! 168 | | } Oct 12 06:26:51.217 INFO kablam! 169 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `RotationY` should have a snake case name such as `rotation_y` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:171:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 171 | / pub fn RotationY(theta : f64) -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 172 | | let c = theta.cos(); Oct 12 06:26:51.217 INFO kablam! 173 | | let s = theta.sin(); Oct 12 06:26:51.217 INFO kablam! 174 | | AffineMatrix { Oct 12 06:26:51.217 INFO kablam! ... | Oct 12 06:26:51.217 INFO kablam! 179 | | } Oct 12 06:26:51.217 INFO kablam! 180 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `RotationZ` should have a snake case name such as `rotation_z` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:182:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 182 | / pub fn RotationZ(theta : f64) -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 183 | | let c = theta.cos(); Oct 12 06:26:51.217 INFO kablam! 184 | | let s = theta.sin(); Oct 12 06:26:51.217 INFO kablam! 185 | | AffineMatrix { Oct 12 06:26:51.217 INFO kablam! ... | Oct 12 06:26:51.217 INFO kablam! 190 | | } Oct 12 06:26:51.217 INFO kablam! 191 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `Scale` should have a snake case name such as `scale` Oct 12 06:26:51.217 INFO kablam! --> src/matrices.rs:193:5 Oct 12 06:26:51.217 INFO kablam! | Oct 12 06:26:51.217 INFO kablam! 193 | / pub fn Scale(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 194 | | AffineMatrix { Oct 12 06:26:51.217 INFO kablam! 195 | | i1: x , j1: 0., k1: 0., w1: 0., Oct 12 06:26:51.217 INFO kablam! 196 | | i2: 0., j2: y , k2: 0., w2: 0., Oct 12 06:26:51.217 INFO kablam! ... | Oct 12 06:26:51.217 INFO kablam! 199 | | } Oct 12 06:26:51.217 INFO kablam! 200 | | } Oct 12 06:26:51.217 INFO kablam! | |_____^ Oct 12 06:26:51.217 INFO kablam! Oct 12 06:26:51.217 INFO kablam! warning: method `UniformScale` should have a snake case name such as `uniform_scale` Oct 12 06:26:51.218 INFO kablam! --> src/matrices.rs:202:5 Oct 12 06:26:51.218 INFO kablam! | Oct 12 06:26:51.218 INFO kablam! 202 | / pub fn UniformScale(s : f64) -> AffineMatrix { Oct 12 06:26:51.218 INFO kablam! 203 | | AffineMatrix { Oct 12 06:26:51.218 INFO kablam! 204 | | i1: s , j1: 0., k1: 0., w1: 0., Oct 12 06:26:51.218 INFO kablam! 205 | | i2: 0., j2: s , k2: 0., w2: 0., Oct 12 06:26:51.218 INFO kablam! ... | Oct 12 06:26:51.218 INFO kablam! 208 | | } Oct 12 06:26:51.218 INFO kablam! 209 | | } Oct 12 06:26:51.218 INFO kablam! | |_____^ Oct 12 06:26:51.218 INFO kablam! Oct 12 06:26:51.540 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.77s Oct 12 06:26:51.561 INFO kablam! su: No module specific data is present Oct 12 06:26:51.922 INFO running `"docker" "rm" "-f" "00442fe278f8f646c10a46c0ea9a65d4346a4574c19a04d1f2c30a31ea26973a"` Oct 12 06:26:52.036 INFO blam! 00442fe278f8f646c10a46c0ea9a65d4346a4574c19a04d1f2c30a31ea26973a Oct 12 06:26:52.038 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-5/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/rustdoc-test-static-cling/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 12 06:26:52.232 INFO blam! caee6751bccdbe1bef4a9b009a6730137a2ac0a1f1d88ac184802b7310746e83 Oct 12 06:26:52.236 INFO running `"docker" "start" "-a" "caee6751bccdbe1bef4a9b009a6730137a2ac0a1f1d88ac184802b7310746e83"` Oct 12 06:26:52.702 INFO kablam! usermod: no changes Oct 12 06:26:52.726 INFO kablam! Compiling affine_transforms v0.2.0 (/source) Oct 12 06:26:53.152 INFO kablam! warning: method `Zero` should have a snake case name such as `zero` Oct 12 06:26:53.152 INFO kablam! --> src/matrices.rs:138:5 Oct 12 06:26:53.152 INFO kablam! | Oct 12 06:26:53.152 INFO kablam! 138 | / pub fn Zero() -> AffineMatrix { Oct 12 06:26:53.152 INFO kablam! 139 | | AffineMatrix::from_row_major(vec![0.0;16]) Oct 12 06:26:53.152 INFO kablam! 140 | | } Oct 12 06:26:53.152 INFO kablam! | |_____^ Oct 12 06:26:53.152 INFO kablam! | Oct 12 06:26:53.152 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 12 06:26:53.152 INFO kablam! Oct 12 06:26:53.152 INFO kablam! warning: method `Identity` should have a snake case name such as `identity` Oct 12 06:26:53.152 INFO kablam! --> src/matrices.rs:142:5 Oct 12 06:26:53.152 INFO kablam! | Oct 12 06:26:53.152 INFO kablam! 142 | / pub fn Identity() -> AffineMatrix { Oct 12 06:26:53.152 INFO kablam! 143 | | AffineMatrix { Oct 12 06:26:53.152 INFO kablam! 144 | | i1: 1., j1: 0., k1: 0., w1: 0., Oct 12 06:26:53.152 INFO kablam! 145 | | i2: 0., j2: 1., k2: 0., w2: 0., Oct 12 06:26:53.152 INFO kablam! ... | Oct 12 06:26:53.152 INFO kablam! 148 | | } Oct 12 06:26:53.152 INFO kablam! 149 | | } Oct 12 06:26:53.152 INFO kablam! | |_____^ Oct 12 06:26:53.152 INFO kablam! Oct 12 06:26:53.152 INFO kablam! warning: method `Translation` should have a snake case name such as `translation` Oct 12 06:26:53.152 INFO kablam! --> src/matrices.rs:151:5 Oct 12 06:26:53.152 INFO kablam! | Oct 12 06:26:53.152 INFO kablam! 151 | / pub fn Translation(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 12 06:26:53.152 INFO kablam! 152 | | AffineMatrix { Oct 12 06:26:53.152 INFO kablam! 153 | | i1: 1., j1: 0., k1: 0., w1: x , Oct 12 06:26:53.152 INFO kablam! 154 | | i2: 0., j2: 1., k2: 0., w2: y , Oct 12 06:26:53.152 INFO kablam! ... | Oct 12 06:26:53.152 INFO kablam! 157 | | } Oct 12 06:26:53.153 INFO kablam! 158 | | } Oct 12 06:26:53.153 INFO kablam! | |_____^ Oct 12 06:26:53.153 INFO kablam! Oct 12 06:26:53.156 INFO kablam! warning: method `RotationX` should have a snake case name such as `rotation_x` Oct 12 06:26:53.156 INFO kablam! --> src/matrices.rs:160:5 Oct 12 06:26:53.156 INFO kablam! | Oct 12 06:26:53.156 INFO kablam! 160 | / pub fn RotationX(theta : f64) -> AffineMatrix { Oct 12 06:26:53.156 INFO kablam! 161 | | let c = theta.cos(); Oct 12 06:26:53.156 INFO kablam! 162 | | let s = theta.sin(); Oct 12 06:26:53.156 INFO kablam! 163 | | AffineMatrix { Oct 12 06:26:53.156 INFO kablam! ... | Oct 12 06:26:53.156 INFO kablam! 168 | | } Oct 12 06:26:53.156 INFO kablam! 169 | | } Oct 12 06:26:53.156 INFO kablam! | |_____^ Oct 12 06:26:53.156 INFO kablam! Oct 12 06:26:53.156 INFO kablam! warning: method `RotationY` should have a snake case name such as `rotation_y` Oct 12 06:26:53.156 INFO kablam! --> src/matrices.rs:171:5 Oct 12 06:26:53.156 INFO kablam! | Oct 12 06:26:53.156 INFO kablam! 171 | / pub fn RotationY(theta : f64) -> AffineMatrix { Oct 12 06:26:53.157 INFO kablam! 172 | | let c = theta.cos(); Oct 12 06:26:53.157 INFO kablam! 173 | | let s = theta.sin(); Oct 12 06:26:53.157 INFO kablam! 174 | | AffineMatrix { Oct 12 06:26:53.157 INFO kablam! ... | Oct 12 06:26:53.157 INFO kablam! 179 | | } Oct 12 06:26:53.157 INFO kablam! 180 | | } Oct 12 06:26:53.157 INFO kablam! | |_____^ Oct 12 06:26:53.157 INFO kablam! Oct 12 06:26:53.157 INFO kablam! warning: method `RotationZ` should have a snake case name such as `rotation_z` Oct 12 06:26:53.157 INFO kablam! --> src/matrices.rs:182:5 Oct 12 06:26:53.157 INFO kablam! | Oct 12 06:26:53.157 INFO kablam! 182 | / pub fn RotationZ(theta : f64) -> AffineMatrix { Oct 12 06:26:53.157 INFO kablam! 183 | | let c = theta.cos(); Oct 12 06:26:53.157 INFO kablam! 184 | | let s = theta.sin(); Oct 12 06:26:53.157 INFO kablam! 185 | | AffineMatrix { Oct 12 06:26:53.157 INFO kablam! ... | Oct 12 06:26:53.157 INFO kablam! 190 | | } Oct 12 06:26:53.157 INFO kablam! 191 | | } Oct 12 06:26:53.157 INFO kablam! | |_____^ Oct 12 06:26:53.157 INFO kablam! Oct 12 06:26:53.157 INFO kablam! warning: method `Scale` should have a snake case name such as `scale` Oct 12 06:26:53.157 INFO kablam! --> src/matrices.rs:193:5 Oct 12 06:26:53.157 INFO kablam! | Oct 12 06:26:53.157 INFO kablam! 193 | / pub fn Scale(x : f64, y : f64, z : f64) -> AffineMatrix { Oct 12 06:26:53.157 INFO kablam! 194 | | AffineMatrix { Oct 12 06:26:53.157 INFO kablam! 195 | | i1: x , j1: 0., k1: 0., w1: 0., Oct 12 06:26:53.157 INFO kablam! 196 | | i2: 0., j2: y , k2: 0., w2: 0., Oct 12 06:26:53.157 INFO kablam! ... | Oct 12 06:26:53.157 INFO kablam! 199 | | } Oct 12 06:26:53.157 INFO kablam! 200 | | } Oct 12 06:26:53.157 INFO kablam! | |_____^ Oct 12 06:26:53.157 INFO kablam! Oct 12 06:26:53.157 INFO kablam! warning: method `UniformScale` should have a snake case name such as `uniform_scale` Oct 12 06:26:53.157 INFO kablam! --> src/matrices.rs:202:5 Oct 12 06:26:53.157 INFO kablam! | Oct 12 06:26:53.157 INFO kablam! 202 | / pub fn UniformScale(s : f64) -> AffineMatrix { Oct 12 06:26:53.157 INFO kablam! 203 | | AffineMatrix { Oct 12 06:26:53.157 INFO kablam! 204 | | i1: s , j1: 0., k1: 0., w1: 0., Oct 12 06:26:53.157 INFO kablam! 205 | | i2: 0., j2: s , k2: 0., w2: 0., Oct 12 06:26:53.157 INFO kablam! ... | Oct 12 06:26:53.157 INFO kablam! 208 | | } Oct 12 06:26:53.157 INFO kablam! 209 | | } Oct 12 06:26:53.157 INFO kablam! | |_____^ Oct 12 06:26:53.157 INFO kablam! Oct 12 06:26:53.751 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.03s Oct 12 06:26:53.754 INFO kablam! su: No module specific data is present Oct 12 06:26:54.145 INFO running `"docker" "rm" "-f" "caee6751bccdbe1bef4a9b009a6730137a2ac0a1f1d88ac184802b7310746e83"` Oct 12 06:26:54.280 INFO blam! caee6751bccdbe1bef4a9b009a6730137a2ac0a1f1d88ac184802b7310746e83 Oct 12 06:26:54.282 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-5/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/rustdoc-test-static-cling/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 12 06:26:54.504 INFO blam! 7fca69d8540aab0389486d8d3a30289bf90bed2caa096af70da91263f0775cf3 Oct 12 06:26:54.505 INFO running `"docker" "start" "-a" "7fca69d8540aab0389486d8d3a30289bf90bed2caa096af70da91263f0775cf3"` Oct 12 06:26:55.036 INFO kablam! usermod: no changes Oct 12 06:26:55.078 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 12 06:26:55.079 INFO kablam! Running /target/debug/deps/affine_transforms-1922423dcdfcbacd Oct 12 06:26:55.085 INFO blam! Oct 12 06:26:55.086 INFO blam! running 26 tests Oct 12 06:26:55.086 INFO blam! test unit_tests::matrix_index_tests::tests::row_major_ctor_with_incrementing ... ok Oct 12 06:26:55.086 INFO blam! test unit_tests::matrix_index_tests::tests::column_major_ctor_with_ones ... ok Oct 12 06:26:55.087 INFO blam! test unit_tests::matrix_index_tests::tests::column_major_ctor_with_incrementing ... ok Oct 12 06:26:55.087 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_x_matrix ... ok Oct 12 06:26:55.087 INFO blam! test unit_tests::matrix_index_tests::tests::row_major_ctor_with_ones ... ok Oct 12 06:26:55.088 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_y_matrix ... ok Oct 12 06:26:55.088 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_z_matrix ... ok Oct 12 06:26:55.088 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_affine_identity ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::matrix_op_tests::tests::translate ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::vector_op_tests::tests::cross_product ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_rotation ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::vector_op_tests::tests::triangle_add ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::vector_op_tests::tests::unary_sub ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::vector_op_tests::tests::sub_one_minus_one ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::matrix_op_tests::tests::inverse_perspective ... ok Oct 12 06:26:55.089 INFO blam! test unit_tests::vector_op_tests::tests::unit_magnitude_squared ... ok Oct 12 06:26:55.090 INFO blam! test unit_tests::vector_op_tests::tests::v3_magnitude ... ok Oct 12 06:26:55.090 INFO blam! test unit_tests::vector_op_tests::tests::unit_vector ... ok Oct 12 06:26:55.090 INFO blam! test unit_tests::vector_op_tests::tests::v3_magnitude_squared ... ok Oct 12 06:26:55.090 INFO blam! test unit_tests::vector_op_tests::tests::cross_product_normal ... ok Oct 12 06:26:55.090 INFO blam! test unit_tests::vector_op_tests::tests::unit_triangle ... ok Oct 12 06:26:55.090 INFO blam! test unit_tests::matrix_op_tests::tests::rotation_axis_tour ... ok Oct 12 06:26:55.092 INFO blam! test unit_tests::vector_op_tests::tests::vector_scale ... ok Oct 12 06:26:55.092 INFO blam! test unit_tests::vector_op_tests::tests::add_one_plus_one ... ok Oct 12 06:26:55.092 INFO blam! test unit_tests::matrix_op_tests::tests::primitives_multiply_as_matrices ... ok Oct 12 06:26:55.100 INFO blam! test unit_tests::vector_op_tests::tests::triangle_scale ... ok Oct 12 06:26:55.100 INFO blam! Oct 12 06:26:55.100 INFO blam! test result: ok. 26 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 12 06:26:55.100 INFO blam! Oct 12 06:26:55.105 INFO kablam! Doc-tests affine_transforms Oct 12 06:26:55.286 INFO blam! Oct 12 06:26:55.286 INFO blam! running 0 tests Oct 12 06:26:55.286 INFO blam! Oct 12 06:26:55.286 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 12 06:26:55.286 INFO blam! Oct 12 06:26:55.293 INFO kablam! su: No module specific data is present Oct 12 06:26:55.548 INFO running `"docker" "rm" "-f" "7fca69d8540aab0389486d8d3a30289bf90bed2caa096af70da91263f0775cf3"` Oct 12 06:26:55.618 INFO blam! 7fca69d8540aab0389486d8d3a30289bf90bed2caa096af70da91263f0775cf3