crypto/signify: close tmp key file in test (#29444)
This commit is contained in:
parent
2e0c5e05ba
commit
8bd0334168
@ -134,6 +134,7 @@ func createKeyPair() (string, string) {
|
|||||||
defer os.Remove(tmpKey.Name())
|
defer os.Remove(tmpKey.Name())
|
||||||
defer os.Remove(tmpKey.Name() + ".pub")
|
defer os.Remove(tmpKey.Name() + ".pub")
|
||||||
defer os.Remove(tmpKey.Name() + ".sec")
|
defer os.Remove(tmpKey.Name() + ".sec")
|
||||||
|
defer tmpKey.Close()
|
||||||
cmd := exec.Command("signify", "-G", "-n", "-p", tmpKey.Name()+".pub", "-s", tmpKey.Name()+".sec")
|
cmd := exec.Command("signify", "-G", "-n", "-p", tmpKey.Name()+".pub", "-s", tmpKey.Name()+".sec")
|
||||||
if output, err := cmd.CombinedOutput(); err != nil {
|
if output, err := cmd.CombinedOutput(); err != nil {
|
||||||
panic(fmt.Sprintf("could not verify the file: %v, output: \n%s", err, output))
|
panic(fmt.Sprintf("could not verify the file: %v, output: \n%s", err, output))
|
||||||
|
Loading…
Reference in New Issue
Block a user