aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/integration/BUILD
diff options
context:
space:
mode:
authorGravatar janakr <janakr@google.com>2017-10-27 01:22:39 +0200
committerGravatar Dmitry Lomov <dslomov@google.com>2017-10-27 16:29:35 +0200
commit2891abf63f7b61e9f237b9d171bd15a5d296af4d (patch)
tree415f9ab42b4ab17e3ef598e0bf326610461066ec /src/test/shell/integration/BUILD
parentb5158a9a677b149e04e844c40a01e9a9dde40783 (diff)
Extract test_actions_deleted_after_execution to a library for internal use.
PiperOrigin-RevId: 173607594
Diffstat (limited to 'src/test/shell/integration/BUILD')
-rw-r--r--src/test/shell/integration/BUILD11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/test/shell/integration/BUILD b/src/test/shell/integration/BUILD
index e647ee73f9..1790710358 100644
--- a/src/test/shell/integration/BUILD
+++ b/src/test/shell/integration/BUILD
@@ -197,11 +197,20 @@ sh_test(
data = [":test-deps"],
)
+sh_library(
+ name = "discard_graph_edges_lib",
+ testonly = 1,
+ srcs = ["discard_graph_edges_lib.sh"],
+)
+
sh_test(
name = "discard_graph_edges_test",
size = "medium",
srcs = ["discard_graph_edges_test.sh"],
- data = [":test-deps"],
+ data = [
+ ":discard_graph_edges_lib.sh",
+ ":test-deps",
+ ],
shard_count = 5,
)