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
Using the flag -a you can change the number of test cases that should run for each test. The default is 100 tests.
-a
$ dist/build/qc/qc Utils: refragment id: [OK, passed 100 tests] ...
Now with increased number of test cases;
dist/build/qc/qc -a 1000 Utils: refragment id: [OK, passed 1000 tests] ...
However, if I use more than 1000 test cases, test-framework somehow decides to not run any tests at all.
$ dist/build/qc/qc -a 1001 Utils: refragment id: [Failed] Arguments exhausted after 0 tests ...
As the comment notes, the arguments are exhausted so it's unable to execute any of the tests.
The text was updated successfully, but these errors were encountered:
This is the same issue as batterseapower#34 — it seems to mention a different option, but --maximum-generated-tests is the long name of -a.
--maximum-generated-tests
Sorry, something went wrong.
To sum up a few interesting things we figured there:
No branches or pull requests
Using the flag
-a
you can change the number of test cases that should run for each test. The default is 100 tests.Now with increased number of test cases;
However, if I use more than 1000 test cases, test-framework somehow decides to not run any tests at all.
As the comment notes, the arguments are exhausted so it's unable to execute any of the tests.
The text was updated successfully, but these errors were encountered: