We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! Your test suite depends on iterating over the stdlib's HashMap<K, V, S> but we generate random state for every map unless it overrides the S parameter, meaning each time they are built and run, you get different hashing. This is intentional to prevent common exploits. But we also would like hashing details to not slow down common uses like iteration, so when you iterate over a hashmap, you get an "arbitrary order", which means that iteration of a hashmap with S = RandomState visits keys in a different order each time.
HashMap<K, V, S>
S
S = RandomState
This results in this sort of thing happening to your tests:
[INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/rwini-93436e769e484a05) [INFO] [stdout] [INFO] [stdout] running 2 tests [INFO] [stdout] test parser::test::ini_parser::test_parse ... ok [INFO] [stdout] test data::test::test_ini_to_string ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- data::test::test_ini_to_string stdout ---- [INFO] [stdout] thread 'data::test::test_ini_to_string' panicked at src/data/mod.rs:13:5: [INFO] [stdout] assertion `left == right` failed [INFO] [stdout] left: "[core]\nkey:value\nname:1" [INFO] [stdout] right: "[core]\nname:1\nkey:value"
You may wish to consider some manner of sorting before comparing in your test.
The text was updated successfully, but these errors were encountered:
left == right
Roger that. I'll try to improve it ASAP.
Sorry, something went wrong.
ec9d933
No branches or pull requests
Hi! Your test suite depends on iterating over the stdlib's
HashMap<K, V, S>
but we generate random state for every map unless it overrides theS
parameter, meaning each time they are built and run, you get different hashing. This is intentional to prevent common exploits. But we also would like hashing details to not slow down common uses like iteration, so when you iterate over a hashmap, you get an "arbitrary order", which means that iteration of a hashmap withS = RandomState
visits keys in a different order each time.This results in this sort of thing happening to your tests:
You may wish to consider some manner of sorting before comparing in your test.
The text was updated successfully, but these errors were encountered: