17 lines
446 B
Bash
Executable File
17 lines
446 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SOURCE=${BASH_SOURCE[0]}
|
|
while [ -L "$SOURCE" ]; do
|
|
DIR=$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd)
|
|
SOURCE=$(readlink "$SOURCE")
|
|
[[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE
|
|
done
|
|
DIR=$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd)
|
|
|
|
ROOT_DIR=$(realpath ${DIR}..)
|
|
LIB_DIR=$(realpath ${DIR}/../lib)
|
|
TEST_DIR=$(realpath ${DIR}/../tests)
|
|
|
|
printf "\033c"
|
|
|
|
dart --define=CURRENT_EXEC_DIR="${ROOT_DIR}" test ${TEST_DIR} |