Temporarily fix broken build in bmclient/main.go
  o I will change bmclient to add new benchmarks introduced by cl/8133 soon.

Change-Id: I4d7a656110c7c0f6eb1a61eb85cc42cc5a695460
diff --git a/runtimes/google/ipc/benchmarks/bmclient/main.go b/runtimes/google/ipc/benchmarks/bmclient/main.go
index 03bd219..5ad7c0f 100644
--- a/runtimes/google/ipc/benchmarks/bmclient/main.go
+++ b/runtimes/google/ipc/benchmarks/bmclient/main.go
@@ -3,9 +3,6 @@
 
 import (
 	"flag"
-	"os"
-
-	"veyron.io/veyron/veyron/runtimes/google/ipc/benchmarks"
 
 	"veyron.io/veyron/veyron2/rt"
 )
@@ -24,10 +21,13 @@
 	}
 	defer runtime.Cleanup()
 
-	ctx := runtime.NewContext()
-	if *chunkCount == 0 {
-		benchmarks.CallEcho(ctx, *server, *count, *payloadSize, os.Stdout)
-	} else {
-		benchmarks.CallEchoStream(runtime, *server, *count, *chunkCount, *payloadSize, os.Stdout)
-	}
+	// TODO(jhahn): Fix this.
+	/*
+		ctx := runtime.NewContext()
+		if *chunkCount == 0 {
+			benchmarks.CallEcho(ctx, *server, *count, *payloadSize, os.Stdout)
+		} else {
+			benchmarks.CallEchoStream(runtime, *server, *count, *chunkCount, *payloadSize, os.Stdout)
+		}
+	*/
 }