Name the nameless build rules
Without names they can't be refactored. Change: 141621006
This commit is contained in:
parent
35a58c8141
commit
92cc148de0
@ -72,6 +72,7 @@ py_test(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "input_pipeline_ops_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"ops/input_pipeline_ops_test.cc",
|
||||
|
@ -1547,8 +1547,8 @@ cc_library(
|
||||
alwayslink = 1,
|
||||
)
|
||||
|
||||
# Low level library tests
|
||||
tf_cc_tests(
|
||||
name = "low_level_library_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"lib/core/arena_test.cc",
|
||||
@ -1621,7 +1621,8 @@ tf_cc_tests(
|
||||
],
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
tf_cc_test(
|
||||
name = "platform_env_test",
|
||||
size = "small",
|
||||
srcs = ["platform/env_test.cc"],
|
||||
deps = [
|
||||
@ -1635,7 +1636,8 @@ tf_cc_tests(
|
||||
],
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
tf_cc_test(
|
||||
name = "platform_file_system_test",
|
||||
size = "small",
|
||||
srcs = ["platform/file_system_test.cc"],
|
||||
deps = [
|
||||
@ -1686,8 +1688,8 @@ cc_test(
|
||||
],
|
||||
)
|
||||
|
||||
# higher level tests
|
||||
tf_cc_tests(
|
||||
name = "higher_level_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"common_runtime/device_set_test.cc",
|
||||
@ -1783,8 +1785,8 @@ tf_cc_tests(
|
||||
],
|
||||
)
|
||||
|
||||
# GPU-related tests
|
||||
tf_cc_tests_gpu(
|
||||
name = "gpu_related_tests",
|
||||
size = "small",
|
||||
srcs = glob(["user_ops/**/*_test.cc"]) + [
|
||||
"common_runtime/gpu/gpu_bfc_allocator_test.cc",
|
||||
@ -2231,6 +2233,7 @@ tf_cc_test(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "ops_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"ops/array_ops_test.cc",
|
||||
|
@ -27,6 +27,7 @@ filegroup(
|
||||
]),
|
||||
)
|
||||
|
||||
load("//tensorflow:tensorflow.bzl", "tf_cuda_cc_test")
|
||||
load("//tensorflow:tensorflow.bzl", "tf_cuda_cc_tests")
|
||||
|
||||
# For platform specific build config
|
||||
@ -268,6 +269,7 @@ cc_library(
|
||||
# TODO(mrry): Move executor_test.cc to ../common_runtime when once it no longer depends
|
||||
# on grpc_testlib.
|
||||
tf_cuda_cc_tests(
|
||||
name = "executor_tests",
|
||||
size = "medium",
|
||||
srcs = [
|
||||
"executor_test.cc",
|
||||
@ -303,11 +305,10 @@ tf_cuda_cc_tests(
|
||||
],
|
||||
)
|
||||
|
||||
tf_cuda_cc_tests(
|
||||
tf_cuda_cc_test(
|
||||
name = "remote_device_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"remote_device_test.cc",
|
||||
],
|
||||
srcs = ["remote_device_test.cc"],
|
||||
linkstatic = tf_kernel_tests_linkstatic(),
|
||||
tags = tf_cuda_tests_tags() + ["manual"],
|
||||
deps = [
|
||||
|
@ -30,6 +30,7 @@ load(
|
||||
"tf_cuda_library",
|
||||
"tf_cc_test",
|
||||
)
|
||||
load("//tensorflow:tensorflow.bzl", "tf_cuda_cc_test")
|
||||
load("//tensorflow:tensorflow.bzl", "tf_cuda_cc_tests")
|
||||
|
||||
# For platform specific build config
|
||||
@ -368,6 +369,7 @@ cc_library(
|
||||
)
|
||||
|
||||
tf_cuda_cc_tests(
|
||||
name = "rpc_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"grpc_channel_test.cc",
|
||||
@ -418,11 +420,10 @@ tf_cc_test(
|
||||
],
|
||||
)
|
||||
|
||||
tf_cuda_cc_tests(
|
||||
tf_cuda_cc_test(
|
||||
name = "grpc_session_test",
|
||||
size = "medium",
|
||||
srcs = [
|
||||
"grpc_session_test.cc",
|
||||
],
|
||||
srcs = ["grpc_session_test.cc"],
|
||||
linkstatic = tf_kernel_tests_linkstatic(),
|
||||
tags = tf_cuda_tests_tags() + ["manual"],
|
||||
deps = [
|
||||
|
@ -1272,6 +1272,7 @@ tf_kernel_library(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "dynamic_op_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"dynamic_partition_op_test.cc",
|
||||
@ -1556,6 +1557,7 @@ tf_kernel_library(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "eigen_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"eigen_activations_test.cc",
|
||||
@ -1577,6 +1579,7 @@ tf_cc_tests(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "basic_ops_benchmark_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"basic_ops_benchmark_test.cc",
|
||||
@ -1594,6 +1597,7 @@ tf_cc_tests(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "bonus_tests",
|
||||
srcs = [
|
||||
"adjust_contrast_op_test.cc",
|
||||
"colorspace_op_test.cc",
|
||||
@ -1735,6 +1739,7 @@ tf_kernel_library(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "bonus2_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"merge_v2_checkpoints_op_test.cc",
|
||||
@ -1913,6 +1918,7 @@ tf_kernel_library(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "bonus3_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"logging_ops_test.cc",
|
||||
@ -2100,6 +2106,7 @@ tf_cc_test(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "sparse_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"sparse_add_op_test.cc",
|
||||
@ -2919,6 +2926,7 @@ tf_kernel_library(
|
||||
)
|
||||
|
||||
tf_cuda_cc_tests(
|
||||
name = "sparse2_tests",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"sparse_tensor_dense_matmul_op_test.cc",
|
||||
|
@ -63,6 +63,7 @@ cc_library(
|
||||
)
|
||||
|
||||
tf_cc_tests(
|
||||
name = "ctc_beam_search_test",
|
||||
size = "small",
|
||||
srcs = [
|
||||
"ctc_beam_search_test.cc",
|
||||
|
@ -352,7 +352,7 @@ def tf_cuda_cc_test(name, srcs, deps, tags=[], data=[], size="medium",
|
||||
args=args)
|
||||
|
||||
# Create a cc_test for each of the tensorflow tests listed in "tests"
|
||||
def tf_cc_tests(srcs, deps, linkstatic=0, tags=[], size="medium",
|
||||
def tf_cc_tests(srcs, deps, name='', linkstatic=0, tags=[], size="medium",
|
||||
args=None, linkopts=[]):
|
||||
for src in srcs:
|
||||
tf_cc_test(
|
||||
@ -365,12 +365,12 @@ def tf_cc_tests(srcs, deps, linkstatic=0, tags=[], size="medium",
|
||||
args=args,
|
||||
linkopts=linkopts)
|
||||
|
||||
def tf_cc_tests_gpu(srcs, deps, linkstatic=0, tags=[], size="medium",
|
||||
def tf_cc_tests_gpu(srcs, deps, name='', linkstatic=0, tags=[], size="medium",
|
||||
args=None):
|
||||
tf_cc_tests(srcs, deps, linkstatic, tags=tags, size=size, args=args)
|
||||
|
||||
|
||||
def tf_cuda_cc_tests(srcs, deps, tags=[], size="medium", linkstatic=0,
|
||||
def tf_cuda_cc_tests(srcs, deps, name='', tags=[], size="medium", linkstatic=0,
|
||||
args=None, linkopts=[]):
|
||||
for src in srcs:
|
||||
tf_cuda_cc_test(
|
||||
|
@ -9,7 +9,7 @@ licenses(["notice"]) # Apache 2.0
|
||||
|
||||
exports_files(["LICENSE"])
|
||||
|
||||
load("//tensorflow:tensorflow.bzl", "py_tests")
|
||||
load("//tensorflow:tensorflow.bzl", "tf_py_test")
|
||||
load("//tensorflow:tensorflow.bzl", "tf_custom_op_library")
|
||||
|
||||
tf_custom_op_library(
|
||||
@ -17,7 +17,7 @@ tf_custom_op_library(
|
||||
srcs = ["ackermann_op.cc"],
|
||||
)
|
||||
|
||||
py_tests(
|
||||
tf_py_test(
|
||||
name = "ackermann_test",
|
||||
size = "small",
|
||||
srcs = ["ackermann_test.py"],
|
||||
@ -30,7 +30,7 @@ tf_custom_op_library(
|
||||
srcs = ["duplicate_op.cc"],
|
||||
)
|
||||
|
||||
py_tests(
|
||||
tf_py_test(
|
||||
name = "duplicate_op_test",
|
||||
size = "small",
|
||||
srcs = ["duplicate_op_test.py"],
|
||||
@ -43,7 +43,7 @@ tf_custom_op_library(
|
||||
srcs = ["invalid_op.cc"],
|
||||
)
|
||||
|
||||
py_tests(
|
||||
tf_py_test(
|
||||
name = "invalid_op_test",
|
||||
size = "small",
|
||||
srcs = ["invalid_op_test.py"],
|
||||
|
Loading…
Reference in New Issue
Block a user