TBR veyron/tools/vrun/test: remove old generated file
Change-Id: I9c8daaeab88f190538e904a37085c2fbd4785f6a
diff --git a/tools/vrun/test/vrun_v23_test.go b/tools/vrun/test/vrun_v23_test.go
deleted file mode 100644
index e13f09f..0000000
--- a/tools/vrun/test/vrun_v23_test.go
+++ /dev/null
@@ -1,26 +0,0 @@
-package main_test
-
-//go:generate v23 test generate .
-
-import (
- "os"
-
- "v.io/core/veyron/lib/testutil/v23tests"
- _ "v.io/core/veyron/profiles/static"
-)
-
-func V23TestAgentd(t *v23tests.T) {
- vrunBin := t.BuildGoPkg("v.io/core/veyron/tools/vrun")
- pingpongBin := t.BuildGoPkg("v.io/core/veyron/security/agent/pingpong")
- agentdBin := t.BuildGoPkg("v.io/core/veyron/security/agent/agentd")
- helperBin := t.BuildGoPkg("v.io/core/veyron/tools/vrun/test")
- principalBin := t.BuildGoPkg("v.io/core/veyron/tools/principal")
-
- creds := t.TempDir()
- agentdBin.WithEnv("VEYRON_CREDENTIALS="+creds).Start("--no_passphrase",
- "--additional_principals="+creds,
- helperBin.Path(),
- vrunBin.Path(),
- pingpongBin.Path(),
- principalBin.Path()).WaitOrDie(os.Stdout, os.Stderr)
-}