Skip to content

Commit

Permalink
Merge pull request #118 from mering/remove-deprecated-arg
Browse files Browse the repository at this point in the history
Remove deprecated argument
  • Loading branch information
aiuto authored Oct 19, 2023
2 parents 3b67828 + 740c600 commit 39d9f42
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tools/test_helpers.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
"""
Expand All @@ -75,7 +73,6 @@ def golden_cmd_test(
cmd = cmd + " > '$@'", # Redirect to collect output
toolchains = toolchains,
tools = tools,
exec_tools = exec_tools,
testonly = True,
)

Expand Down

0 comments on commit 39d9f42

Please sign in to comment.