17 lines
498 B
Bash
Executable File
17 lines
498 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
bazel test "$@" ...
|
|
|
|
# /tmp/bazel-zig-cc should be empty for the test below to be valid.
|
|
# This test ensures that github.com/ziglang/zig/issues/13050 does not
|
|
# regress
|
|
find /tmp/bazel-zig-cc -name mutex_destructor.o -execdir file '{}' \; | \
|
|
sort | uniq -c | sort -rn > /tmp/got_cache
|
|
|
|
diff -u ci/testdata/want_cache /tmp/got_cache || {
|
|
>&2 echo "ERROR: unexpected artifacts."
|
|
>&2 echo "Was /tmp/bazel-zig-cc empty before the test?"
|
|
exit 1
|
|
}
|