The suite of tools that are run in the TechEmpower Framework Benchmarks. This application is a stand-alone executable which orchestrates several functions: auditing existing test implementations, running benchmarks, running test implementation verifications, etc.
The goal of this application is to live in isolation from the test implementations. Separately, the executable that is built from this toolset will execute against the test implementations as local data.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- TechEmpower Frameworks
- Rust
- Docker or Docker4Windows
- Git (required for benchmarking only)
To run any tests, the toolset needs to know the location of FrameworkBenchmarks
.
There are three places the toolset searches (in order):
- Environment variable
TFB_HOME
- Home directory; e.g.
~/.tfb
- Current directory
$ cargo test
$ cargo build --release
The executable tfb_toolset
(tfb_toolset.exe
on Windows) only needs to be on
the PATH
.
Unix:
$ cd TFBToolset
$ cargo build --release
$ cd ..
$ git clone https://github.com/TechEmpower/FrameworkBenchmarks.git
$ cd FrameworkBenchmarks
$ ../TFBToolset/target/release/tfb_toolset -m verify --test gemini
Windows:
> cd TFBToolset
> cargo build --release
> cd ..
> git clone https://github.com/TechEmpower/FrameworkBenchmarks.git
> cd FrameworkBenchmarks
> ..\TFBToolset\target\release\tfb_toolset.exe -m verify --test gemini
- Mike Smith - Initial work - msmith-techempower
This project is licensed under the BSD-3-Clause License - see the LICENSE file for details