consistent use of v23 test generate in order to use TestMain and in turn call test.Init.
Change-Id: Ib321c65ccba48d895fe793baac73a6b1f0a82b6f
diff --git a/cmd/vrpc/v23_internal_test.go b/cmd/vrpc/v23_internal_test.go
new file mode 100644
index 0000000..dcd0029
--- /dev/null
+++ b/cmd/vrpc/v23_internal_test.go
@@ -0,0 +1,17 @@
+// Copyright 2015 The Vanadium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// This file was auto-generated via go generate.
+// DO NOT UPDATE MANUALLY
+package main
+
+import "testing"
+import "os"
+
+import "v.io/x/ref/test"
+
+func TestMain(m *testing.M) {
+ test.Init()
+ os.Exit(m.Run())
+}