helpers: Improve error message

This commit is contained in:
Alexander Neumann 2020-11-12 20:37:27 +01:00
parent 0be906a92f
commit 8ad9f88993
1 changed files with 4 additions and 1 deletions

View File

@ -118,7 +118,10 @@ func SetupTarTestFixture(t testing.TB, outputDir, tarFile string) {
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
OK(t, cmd.Run())
err = cmd.Run()
if err != nil {
t.Fatalf("running command %v %v failed: %v", cmd.Path, cmd.Args, err)
}
}
// Env creates a test environment and extracts the repository fixture.