duster/js/run_dockerized_compliance_suite.bash
2020-04-12 15:47:38 -04:00

10 lines
275 B
Bash
Executable File

#!/usr/bin/env bash
#
# Runs the full suite of tests against LinkedIn DustJS and duster to compare the result
set -euo pipefail
IFS=$'\n\t'
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "$DIR/../"
docker build -t duster . && docker run --rm -i -t duster "${@}"