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
It should be possible to define benchmarks in HTF. Benchmark should use criterion for measurements.
Possibility 1:
bench_fact = nf fact 100
This simply runs the benchmark when explicitly requested but not when executing the whole test suite.
Possibility 2:
bench_fact = withReference someReferenceBenchmark 3.4 $ nf fact 100
This checks that running nf fact 100 is at most 3.4 times as slow as `someReferenceBenchmark. This benchmark is run when the whole test suite is run.
nf fact 100
Benchmark should not be executed concurrently to other tests.
The text was updated successfully, but these errors were encountered:
+1, This would be amazingly useful to have! Great idea!
Sorry, something went wrong.
No branches or pull requests
It should be possible to define benchmarks in HTF. Benchmark should use criterion for measurements.
Possibility 1:
This simply runs the benchmark when explicitly requested but not when executing the whole test suite.
Possibility 2:
This checks that running
nf fact 100
is at most 3.4 times as slow as `someReferenceBenchmark. This benchmark is run when the whole test suite is run.Benchmark should not be executed concurrently to other tests.
The text was updated successfully, but these errors were encountered: