Make the generated test binary name match the target name

PiperOrigin-RevId: 368495641
This commit is contained in:
Ting-Yu Wang 2021-04-14 13:23:31 -07:00 committed by gVisor bot
parent 5c1052b6bb
commit 272d2e1168
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ load("//tools:defs.bzl", "default_platform", "platforms")
def _runner_test_impl(ctx):
# Generate a runner binary.
runner = ctx.actions.declare_file("%s-runner" % ctx.label.name)
runner = ctx.actions.declare_file(ctx.label.name)
runner_content = "\n".join([
"#!/bin/bash",
"set -euf -x -o pipefail",