8000 Make xla_test, etc, shuffle tests by default. · linux-on-ibm-z/tensorflow@015bab9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 015bab9

Browse files
Make xla_test, etc, shuffle tests by default.
This helps catch test order dependencies at presubmit time. PiperOrigin-RevId: 730598576
1 parent e25e378 commit 015bab9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

third_party/xla/xla/python/ifrt_proxy/common/ifrt_proxy.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
load("//xla:xla.bzl", "xla_cc_test")
44

55
def ifrt_proxy_cc_test(
6-
shuffle_tests = False,
6+
shuffle_tests = True,
77
**kwargs):
88
xla_cc_test(
99
shuffle_tests = shuffle_tests,

third_party/xla/xla/tests/build_defs.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def xla_test(
195195
# However, this increases the size of the test binary, which breaks Nvidia's build.
196196
# Therefore we use dynamic linking outside Google.
197197
linkstatic = False,
198-
shuffle_tests = False,
198+
shuffle_tests = True,
199199
**kwargs):
200200
"""Generates cc_test targets for the given XLA backends.
201201

third_party/xla/xla/tsl/mkl/graph.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def onednn_graph_cc_library(srcs = [], hdrs = [], deps = [], **kwargs):
2020
def onednn_graph_cc_test(
2121
srcs = [],
2222
deps = [],
23-
shuffle_tests = False,
23+
shuffle_tests = True,
2424
**kwargs):
2525
"""xla_cc_test rule that has empty src and deps if not building with Graph API."""
2626
xla_cc_test(

0 commit comments

Comments
 (0)
0