From edcc60b931232d5bea4254af31965da126f07a68 Mon Sep 17 00:00:00 2001 From: Brett Landau Date: Wed, 31 Jul 2019 11:34:34 -0700 Subject: Refactor proctor binaries to implement testRunner interface. Shared code among proctor-*.go files has been refactored into common/common.go. The common package is imported in each proctor binary and a struct is created to implement the testRunner interface defined in common.go. This allows for the proctor binaries to be updated without having to copy/paste the same code across all files. There are no usage or functionality changes. PiperOrigin-RevId: 260967080 --- test/runtimes/java/BUILD | 1 + 1 file changed, 1 insertion(+) (limited to 'test/runtimes/java/BUILD') diff --git a/test/runtimes/java/BUILD b/test/runtimes/java/BUILD index 7e2808ece..8c39d39ec 100644 --- a/test/runtimes/java/BUILD +++ b/test/runtimes/java/BUILD @@ -5,4 +5,5 @@ package(licenses = ["notice"]) go_binary( name = "proctor-java", srcs = ["proctor-java.go"], + deps = ["//test/runtimes/common"], ) -- cgit v1.2.3