10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERBOSE=""
|
|
|
|
if [[ $1 == "--verbose" ]]; then
|
|
VERBOSE="--verbose"
|
|
fi
|
|
|
|
cd ../cpp/system/build/tests && ctest -j $(nproc) --output-on-failure $VERBOSE
|