Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions kernels/test/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,11 @@ def make_example_generated_op_test_target():
"""
op_test_cpp_files = native.glob(
["op_*_test.cpp"],
# linear has no portable op.
exclude = ["op_linear_test.cpp"],
# These tests have no portable op.
exclude = [
"op_fft_r2c_test.cpp",
"op_linear_test.cpp",
],
)

# The op name is from the beginning to the part without `_test.cpp` (:-9)
Expand Down
Loading