aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraiuto <aiuto@google.com>2023-10-19 14:32:49 -0400
committerGitHub <noreply@github.com>2023-10-19 14:32:49 -0400
commit39d9f429b563478e1c16fb0f938d178ccf4c3fd3 (patch)
tree9da1c5b8b5d97ad3229eb34e4d5f5ee84d7413eb
parent3b6782896db4fe76e946b7c104ae279f27c66419 (diff)
parent740c6005e3bf2dd6a8ef013deda44b10947b1705 (diff)
downloadbazelbuild-rules_license-39d9f429b563478e1c16fb0f938d178ccf4c3fd3.tar.gz
Merge pull request #118 from mering/remove-deprecated-arg
Remove deprecated argument
-rw-r--r--tools/test_helpers.bzl3
1 files changed, 0 insertions, 3 deletions
diff --git a/tools/test_helpers.bzl b/tools/test_helpers.bzl
index 3ffb9b7..77e288a 100644
--- a/tools/test_helpers.bzl
+++ b/tools/test_helpers.bzl
@@ -45,7 +45,6 @@ def golden_cmd_test(
golden, # Required
toolchains = [],
tools = None,
- exec_tools = None,
srcs = [], # Optional
**kwargs): # Rest
"""Compares cmd output to golden output, passes if they are identical.
@@ -56,7 +55,6 @@ def golden_cmd_test(
golden: The golden file to be compared.
toolchains: List of toolchains needed to run the command, passed to genrule.
tools: List of tools needed to run the command, passed to genrule.
- exec_tools: List of tools needed to run the command, passed to genrule.
srcs: List of sources needed as input to the command, passed to genrule.
**kwargs: Any additional parameters for the generated golden_test.
"""
@@ -75,7 +73,6 @@ def golden_cmd_test(
cmd = cmd + " > '$@'", # Redirect to collect output
toolchains = toolchains,
tools = tools,
- exec_tools = exec_tools,
testonly = True,
)