tools: Replace copy-pasta scripts

There were a bunch of helper scripts to build a go tool and run it.
Replace these with a single 'run' command that takes the tool name and arguments.

Helps reduce maintainance, file spew.

Also add the 'tools/bin' directory to .gitignore. These are the cached tool binaries.

Bug: dawn:1339
Change-Id: I012c966736b4d93949f6142c342cdcfefa9f0083
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/86063
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
Ben Clayton
2022-04-07 18:26:45 +00:00
committed by Dawn LUCI CQ
parent aba5a212ca
commit 9f49ac5493
11 changed files with 35 additions and 278 deletions

View File

@@ -19,11 +19,11 @@ set -e # Fail on any error.
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd )"
function usage() {
echo "test-all.sh is a simple wrapper around <tint>/tools/test-runner that"
echo "test-all.sh is a simple wrapper around <tint>/tools/test-runner that"
echo "injects the <tint>/test directory as the second command line argument"
echo
echo "Usage of <tint>/tools/test-runner:"
"${SCRIPT_DIR}/../../tools/test-runner" --help
echo "Usage of test-runner:"
"${SCRIPT_DIR}/../../tools/run" "test-runner" --help
}
TINT="$1"
@@ -41,4 +41,4 @@ if [ ! -x "$TINT" ]; then
exit 1
fi
"${SCRIPT_DIR}/../../tools/test-runner" "${@:2}" "${TINT}" "${SCRIPT_DIR}"
"${SCRIPT_DIR}/../../tools/run" "test-runner" "${@:2}" "${TINT}" "${SCRIPT_DIR}"