This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
12 lines
492 B
Bash
Executable file
12 lines
492 B
Bash
Executable file
#!/usr/bin/env bash
|
|
source ../../env_bench.sh
|
|
source "$TEST_DIR/util.sh"
|
|
|
|
# This should run in the same environment as run_bench, otherwise `lakeprof`
|
|
# will use the `lake` from the global system `elan` install and not the one from
|
|
# the current commit.
|
|
#
|
|
# Once an elan with support for relative toolchains has been widely released and
|
|
# been adopted by this repo, this wrapper script should no longer be necessary
|
|
# and the upload script can be called directly.
|
|
./lakeprof_report_upload.py
|