veyron/{services/mgmt,tools}: end-to-end tests for binaryd, buildd, and profiled

This CL adds end-to-end 'test.sh' shell tests for the binary
repository, build server, and profile repository daemons. It also
makes minor modifications to these daemons and the client tools used
for communicatining with the daemons. Further, the CL extends an
existing end-to-end test for the application repository daemon with an
additional check.

This CL depends on https://veyron-review.googlesource.com/#/c/4005/

Change-Id: I4f02e552fc4ca776f2762058f1f936eb90c77fac
diff --git a/services/mgmt/profile/profiled/main.go b/services/mgmt/profile/profiled/main.go
index 73f3465..93321d2 100644
--- a/services/mgmt/profile/profiled/main.go
+++ b/services/mgmt/profile/profiled/main.go
@@ -17,8 +17,8 @@
 	protocol = flag.String("protocol", "tcp", "protocol to listen on")
 	address  = flag.String("address", ":0", "address to listen on")
 
-	name      = flag.String("name", "", "name to mount the profile manager as")
-	storeName = flag.String("store", "", "object name of the profile manager store")
+	name      = flag.String("name", "", "name to mount the profile repository as")
+	storeName = flag.String("store", "", "object name of the profile repository store")
 )
 
 func main() {
@@ -45,7 +45,7 @@
 	if err := server.Serve(*name, dispatcher); err != nil {
 		vlog.Fatalf("Serve(%v) failed: %v", *name, err)
 	}
-	vlog.VI(0).Infof("Profile manager published at %v/%v", endpoint, *name)
+	vlog.Infof("Profile repository running at endpoint=%q", endpoint)
 
 	// Wait until shutdown.
 	<-signals.ShutdownOnSignals()