aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tools/test
diff options
context:
space:
mode:
authorGravatar Austin Anderson <angerson@google.com>2017-12-05 17:36:42 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-05 17:40:58 -0800
commitd9a71ad0e5723e6e97741d60be106a6658cde4e4 (patch)
treebb66a5455655f43c384521a15a6de4eb43b8166a /tensorflow/tools/test
parentfb857dcef928700b9d75c80b533299957a1581fb (diff)
Fix some build incompatibilities with new versions of Bazel
See #15137. PiperOrigin-RevId: 178037461
Diffstat (limited to 'tensorflow/tools/test')
-rw-r--r--tensorflow/tools/test/performance.bzl5
1 files changed, 3 insertions, 2 deletions
diff --git a/tensorflow/tools/test/performance.bzl b/tensorflow/tools/test/performance.bzl
index b5c4bbf5a7..cee53dd5b6 100644
--- a/tensorflow/tools/test/performance.bzl
+++ b/tensorflow/tools/test/performance.bzl
@@ -21,8 +21,9 @@ def tf_cc_logged_benchmark(
fail(" ".join(("Target must be a single well-defined test, e.g.,",
"//path/to:test. Received: %s" % target)))
- all_tags = list(depset(tags) + \
- depset(["benchmark-test", "local", "manual", "regression-test"]))
+ all_tags = (
+ depset(tags) + depset(
+ ["benchmark-test", "local", "manual", "regression-test"])).to_list()
tf_py_test(
name = name,