2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-02 00:50:48 +00:00

helpers: Improve error message

This commit is contained in:
Alexander Neumann 2020-11-12 20:37:27 +01:00
parent 0be906a92f
commit 8ad9f88993

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.