blob: 1dd39a089cd7a08d8622753c282b04560da8b9d1 [file] [log] [blame]
#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
function run_test {
bazel run //:write_source_file_root-test
local expected_out="test-out/dist/write_source_file_root-test/test.txt"
if [ ! -e "$expected_out" ]; then
echo "ERROR: expected $expected_out to exist"
exit 1
fi
if [ -x "$expected_out" ]; then
echo "ERROR: expected $expected_out to not be executable"
exit 1
fi
expected_out="test-out/dist/write_source_file_root-test_b/test.txt"
if [ ! -e "$expected_out" ]; then
echo "ERROR: expected $expected_out to exist"
exit 1
fi
if [ -x "$expected_out" ]; then
echo "ERROR: expected $expected_out to not be executable"
exit 1
fi
}
# Run twice to make sure we can have permission to overwrite the outputs of a previous run
rm -Rf test-out
run_test
run_test
echo "All tests passed"