8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
|
|
# Run the comprehensive test suite
|
|
"${SCRIPT_DIR}/tests/test.sh" |