You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
quickcheck tests are super long for miri (14m24s enabled vs. 1m48s disabled). Perhaps it is better to separate "try to break the program by massaging input for a while" tests and usual tests? cargo-fuzz defines fuzz targets, which already are separate from tests.
The text was updated successfully, but these errors were encountered:
I think it could be better to not switch to cargo-fuzz if we would run 1 test in quickcheck. This would allow to check UB in the quickcheck! code. However it would be desirable to write some predefined values to increase code coverage and for determinism.
quickcheck
tests are super long for miri (14m24s
enabled vs.1m48s
disabled). Perhaps it is better to separate "try to break the program by massaging input for a while" tests and usual tests?cargo-fuzz
defines fuzz targets, which already are separate from tests.The text was updated successfully, but these errors were encountered: