BurntSushi / quickcheck

Automated property based testing for Rust (with shrinking).
The Unlicense
2.32k stars 144 forks source link

Exclude i128 and u128 when targeting emscripten #276

Open Spoonbender opened 3 years ago

Spoonbender commented 3 years ago

Fixes #272 The i128 and u128 experimental types are not well supported by emscripten, and rand doesn't support them when targeting emscripten. This PR excludes supports for i128 and u128 from quickcheck to properly build when targeting emscripten.

(In the future we might encounter other build targets that don't support i128 and i128, and we should be able to exclude from them with little adjustments)

Not included in this PR: