d8c3285e3c
I noticed in a separate project that ctrl+c was not being honored under --init was passed, so I'm adding it in here.
58 lines
1.5 KiB
Bash
Executable File
58 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd "$DIR/../"
|
|
REALPATH=$(command -v uu-realpath || command -v realpath)
|
|
MAKE=$(command -v gmake || command -v make)
|
|
|
|
function main {
|
|
local test_names=$(get_test_names "${@}")
|
|
build_container
|
|
|
|
local test
|
|
while read test; do
|
|
launch_container "$test"
|
|
done<<<"$test_names"
|
|
}
|
|
|
|
function build_container {
|
|
$MAKE -C "$DIR/../docker/organic_test"
|
|
}
|
|
|
|
function get_test_names {
|
|
local test_file
|
|
local samples_dir=$($REALPATH "$DIR/../org_mode_samples")
|
|
for test_file in "$@"
|
|
do
|
|
if [ -e "$test_file" ]; then
|
|
local test_file_full_path=$($REALPATH "$test_file")
|
|
local relative_to_samples=$($REALPATH --relative-to "$samples_dir" "$test_file_full_path")
|
|
local without_extension="${relative_to_samples%.org}"
|
|
echo "${without_extension/\//_}" | tr '[:upper:]' '[:lower:]'
|
|
else
|
|
echo "$test_file" | tr '[:upper:]' '[:lower:]'
|
|
fi
|
|
done
|
|
}
|
|
|
|
function launch_container {
|
|
local test="$1"
|
|
local additional_args=()
|
|
|
|
local init_script=$(cat <<EOF
|
|
set -euo pipefail
|
|
IFS=\$'\n\t'
|
|
|
|
cargo test --no-fail-fast --lib --test test_loader "$test" -- --show-output
|
|
EOF
|
|
)
|
|
|
|
docker run --init --rm -v "$($REALPATH ./):/source:ro" --mount source=cargo-cache,target=/usr/local/cargo/registry --mount source=rust-cache,target=/target --env CARGO_TARGET_DIR=/target -w /source organic-test sh -c "$init_script"
|
|
}
|
|
|
|
|
|
main "${@}"
|