mirror of
https://github.com/hashicorp/packer.git
synced 2026-06-08 16:22:15 -04:00
packer/rpc: get rid of data races in tests
This commit is contained in:
parent
6f742cb332
commit
a66085444c
1 changed files with 4 additions and 1 deletions
|
|
@ -99,7 +99,10 @@ func TestCommunicatorRPC(t *testing.T) {
|
|||
c.startCmd.SetExited(42)
|
||||
|
||||
for i := 0; i < 5; i++ {
|
||||
if cmd.Exited {
|
||||
cmd.Lock()
|
||||
exited := cmd.Exited
|
||||
cmd.Unlock()
|
||||
if exited {
|
||||
assert.Equal(cmd.ExitStatus, 42, "should have proper exit status")
|
||||
break
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue