tests: fix TestGeneratedDoc (#1709)

It was failing silently.
This commit is contained in:
Alessandro Arzilli 2019-10-07 18:20:49 +02:00 committed by Derek Parker
parent a82e6d6987
commit e1e2a1fabb
3 changed files with 5 additions and 3 deletions

@ -25,7 +25,7 @@ are:
--check-go-version Checks that the version of Go in use is compatible with Delve. (default true)
--headless Run debug server only, in headless mode.
--init string Init file, executed by the terminal client.
-l, --listen string Debugging server listen address. (default "localhost:0")
-l, --listen string Debugging server listen address. (default "127.0.0.1:0")
--log Enable debugging server logging.
--log-dest string Writes logs to the specified file or file descriptor (see 'dlv help log').
--log-output string Comma separated list of components that should produce debug output (see 'dlv help log')

@ -39,7 +39,7 @@ mode.
--check-go-version Checks that the version of Go in use is compatible with Delve. (default true)
--headless Run debug server only, in headless mode.
--init string Init file, executed by the terminal client.
-l, --listen string Debugging server listen address. (default "localhost:0")
-l, --listen string Debugging server listen address. (default "127.0.0.1:0")
--log Enable debugging server logging.
--log-dest string Writes logs to the specified file or file descriptor (see 'dlv help log').
--log-output string Comma separated list of components that should produce debug output (see 'dlv help log')

@ -285,7 +285,9 @@ func TestGeneratedDoc(t *testing.T) {
tempDir, err := ioutil.TempDir(os.TempDir(), "test-gen-doc")
assertNoError(err, t, "TempDir")
defer cmds.SafeRemoveAll(tempDir)
exec.Command("go", "run", "scripts/gen-usage-docs.go", tempDir).Run()
cmd := exec.Command("go", "run", "scripts/gen-usage-docs.go", tempDir)
cmd.Dir = projectRoot()
cmd.Run()
entries, err := ioutil.ReadDir(tempDir)
assertNoError(err, t, "ReadDir")
for _, doc := range entries {