mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-12-02 10:15:22 +00:00
16 lines
285 B
Bash
Executable file
16 lines
285 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -o errexit -o nounset
|
|
|
|
cd $TEST_SRCDIR
|
|
cd $TEST_WORKSPACE
|
|
cd $(dirname $TEST_BINARY)
|
|
cd case_6
|
|
|
|
# A path that should be in the directory we have in data[]
|
|
path="f/f2/f"
|
|
if [ ! -f "$path" ]; then
|
|
echo >&2 "Expected $path to exist in runfiles"
|
|
exit 1
|
|
fi
|