Works just like FedorViest's tester but faster and supports Windows.
- Download the latest release for your OS
- Unpack in your work folder
- Set the compile and run commands in .env
- Run the tester from a terminal window (
./tester
on Linux,.\tester.exe
on Windows)
- Install Rust
- Build the project:
cargo run
to build and runcargo build --release
for an optimized release build
TESTER_COMPILE_COMMAND="clang -O1 main.c"
TESTER_RUN_COMMAND="./a.out"
TESTER_INPUT_FILES="data.txt;string.txt;parse.txt"
TESTER_COMPILE_COMMAND="gcc -O1 main.c"
TESTER_RUN_COMMAND=".\a.exe"
TESTER_INPUT_FILES="data.txt;string.txt;parse.txt"