From 740c6005e3bf2dd6a8ef013deda44b10947b1705 Mon Sep 17 00:00:00 2001 From: maleo Date: Thu, 14 Sep 2023 13:31:42 +0000 Subject: [PATCH] Remove deprecated argument --- tools/test_helpers.bzl | 3 --- 1 file changed, 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, )