13 lines
501 B
Bash
Executable File
13 lines
501 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This file is made to support the unit tests workflow.
|
|
# It should only require the directories build/tests, scripts/, and tests/ to function,
|
|
# and cmake (with ctest) installed.
|
|
# (otherwise, update the workflow too, but try to avoid to keep things self-contained)
|
|
|
|
ROOT_DIR="$(dirname "$0")/.."
|
|
|
|
cd "${ROOT_DIR}" || exit 1
|
|
|
|
ctest --test-dir build/tests -C Release -R "Http|SSL certificates|Placeholder" --output-junit "$(pwd)/ctest_results.xml" --output-on-failure --no-tests=error -j
|