-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
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
svQuickCheck weird behavior #237
Comments
Interesting! I tested this on a different machine; and both actually run 100 tests. The working configuration has the following dependencies:
Would be good to compare this to the dependency list on the failing machine; which I do not have access to right now. |
This QuickCheck bug seems relevant: nick8325/quickcheck#113 Most likely the failing machine has an older version of QuickCheck that exhibits this problem. Need to upgrade and see if the problem goes away. |
Indeed, the quick-check bug is the culprit here. Fixed via 442b15b by requiring a newer QuickCheck. Looks like the bug was introduced either in QuickCheck 2.9 or 2.9.1. Version 2.8.1 doesn't have it, and 2.9.2 fixes it. |
@brianhuffman
Consider:
I get:
Note that
f
andg
should be equivalent; first coded in the usual style, second coded in theDynamic
style. But for some reasonsvQuickCheck
is only running 1 test. Why is that?The text was updated successfully, but these errors were encountered: