summaryrefslogtreecommitdiffhomepage
path: root/test/runner/defs.bzl
diff options
context:
space:
mode:
authorTing-Yu Wang <anivia@google.com>2021-04-14 13:23:31 -0700
committergVisor bot <gvisor-bot@google.com>2021-04-14 13:25:17 -0700
commit272d2e1168733fa7707ad21fca6f7a847f34bf1b (patch)
tree694c79d63381d93f77f21a791edfb8202664770f /test/runner/defs.bzl
parent5c1052b6bb2658208f1afaf423aeac98f30235c1 (diff)
Make the generated test binary name match the target name
PiperOrigin-RevId: 368495641
Diffstat (limited to 'test/runner/defs.bzl')
-rw-r--r--test/runner/defs.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runner/defs.bzl b/test/runner/defs.bzl
index 829247657..314f050e5 100644
--- a/test/runner/defs.bzl
+++ b/test/runner/defs.bzl
@@ -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",