-
-
Notifications
You must be signed in to change notification settings - Fork 932
Description
uname -a
Linux verbus-X570-AORUS-ELITE-WIFI 6.11.0-19-generic #19-Ubuntu SMP PREEMPT_DYNAMIC Wed Feb 12 21:43:43 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux
lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 24.10
Release: 24.10
Codename: oracular
git clone https://github.com/gleam-lang/gleam.git --branch v1.9.0-rc1
Run cargo test
cargo test
Running unittests src/lib.rs (target/debug/deps/test_output-d62085ed7ed1f4ef)
running 12 tests
test tests::echo::echo_bitarray ... FAILED
test tests::echo::echo_list ... FAILED
test tests::echo::echo_custom_type ... FAILED
test tests::echo::echo_bool ... FAILED
test tests::echo::echo_importing_module_named_inspect ... FAILED
test tests::echo::echo_nil ... FAILED
test tests::echo::echo_string ... FAILED
test tests::echo::echo_tuple ... FAILED
test tests::echo::echo_float ... FAILED
test tests::echo::echo_int ... FAILED
test tests::echo::echo_function ... FAILED
test tests::echo::echo_dict ... FAILED
failures:
---- tests::echo::echo_bitarray stdout ----
thread 'tests::echo::echo_bitarray' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
note: run with RUST_BACKTRACE=1 environment variable to display a backtrace
---- tests::echo::echo_list stdout ----
thread 'tests::echo::echo_list' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_custom_type stdout ----
thread 'tests::echo::echo_custom_type' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_bool stdout ----
thread 'tests::echo::echo_bool' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_importing_module_named_inspect stdout ----
thread 'tests::echo::echo_importing_module_named_inspect' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_nil stdout ----
thread 'tests::echo::echo_nil' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_string stdout ----
thread 'tests::echo::echo_string' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_tuple stdout ----
thread 'tests::echo::echo_tuple' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_float stdout ----
thread 'tests::echo::echo_float' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_int stdout ----
thread 'tests::echo::echo_int' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_function stdout ----
thread 'tests::echo::echo_function' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
---- tests::echo::echo_dict stdout ----
thread 'tests::echo::echo_dict' panicked at test-output/src/tests/echo.rs:74:10:
spawn run process: Os { code: 2, kind: NotFound, message: "No such file or directory" }
failures:
tests::echo::echo_bitarray
tests::echo::echo_bool
tests::echo::echo_custom_type
tests::echo::echo_dict
tests::echo::echo_float
tests::echo::echo_function
tests::echo::echo_importing_module_named_inspect
tests::echo::echo_int
tests::echo::echo_list
tests::echo::echo_nil
tests::echo::echo_string
tests::echo::echo_tuple
test result: FAILED. 0 passed; 12 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.06s
error: test failed, to rerun pass -p test-output --lib