14 lines
272 B
Bash
14 lines
272 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
BUILD_DIR="${BUILD_DIR:-build}"
|
||
|
|
|
||
|
|
if [ ! -d "$BUILD_DIR" ]; then
|
||
|
|
echo "Build directory not found. Run tools/build.sh first."
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
echo "=== ViewDesignEngine Tests ==="
|
||
|
|
cd "$BUILD_DIR"
|
||
|
|
ctest --output-on-failure -j"$(nproc)" "$@"
|