aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/testing/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-04-10 15:45:37 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-10 15:48:06 -0700
commit15b104a047c1ec8ec07045047d46a300ebc6b2e3 (patch)
tree6ff0408ae98cf584087766fb136517338456d19f /tensorflow/contrib/lite/testing/BUILD
parent9eaab27bc41b6865bc945dcbb6b75c2427826ef3 (diff)
Small changes to testing code, plus a new binary to check diff from command line.
PiperOrigin-RevId: 192360373
Diffstat (limited to 'tensorflow/contrib/lite/testing/BUILD')
-rw-r--r--tensorflow/contrib/lite/testing/BUILD13
1 files changed, 9 insertions, 4 deletions
diff --git a/tensorflow/contrib/lite/testing/BUILD b/tensorflow/contrib/lite/testing/BUILD
index 9f0ba43252..198984e7e7 100644
--- a/tensorflow/contrib/lite/testing/BUILD
+++ b/tensorflow/contrib/lite/testing/BUILD
@@ -196,7 +196,6 @@ cc_library(
cc_library(
name = "util",
- testonly = 1,
hdrs = ["util.h"],
)
@@ -251,7 +250,6 @@ cc_test(
cc_library(
name = "generate_testspec",
- testonly = 1,
srcs = ["generate_testspec.cc"],
hdrs = ["generate_testspec.h"],
deps = [
@@ -277,7 +275,6 @@ cc_test(
cc_library(
name = "tflite_diff_util",
- testonly = 1,
srcs = ["tflite_diff_util.cc"],
hdrs = ["tflite_diff_util.h"],
deps = [
@@ -295,7 +292,6 @@ cc_library(
cc_library(
name = "tflite_diff_flags",
- testonly = 1,
hdrs = ["tflite_diff_flags.h"],
deps = [
":split",
@@ -338,6 +334,15 @@ tf_cc_test(
],
)
+cc_binary(
+ name = "tflite_diff",
+ srcs = ["tflite_diff_example_test.cc"],
+ deps = [
+ ":tflite_diff_flags",
+ ":tflite_diff_util",
+ ],
+)
+
tf_cc_test(
name = "generated_examples_zip_test",
size = "large",