cmd/dockerd: TestUserTerminatedError: fix unhandled errors
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
888716aa59
commit
f519a8648d
@ -87,7 +87,7 @@ func TestUserTerminatedError(t *testing.T) {
|
|||||||
notifyCtx, cancelNotify := notifyContext(ctx, platformsignals.TerminationSignals...)
|
notifyCtx, cancelNotify := notifyContext(ctx, platformsignals.TerminationSignals...)
|
||||||
t.Cleanup(cancelNotify)
|
t.Cleanup(cancelNotify)
|
||||||
|
|
||||||
syscall.Kill(syscall.Getpid(), syscall.SIGINT)
|
assert.Check(t, syscall.Kill(syscall.Getpid(), syscall.SIGINT))
|
||||||
|
|
||||||
<-notifyCtx.Done()
|
<-notifyCtx.Done()
|
||||||
assert.ErrorIs(t, context.Cause(notifyCtx), errCtxSignalTerminated{
|
assert.ErrorIs(t, context.Cause(notifyCtx), errCtxSignalTerminated{
|
||||||
@ -99,7 +99,7 @@ func TestUserTerminatedError(t *testing.T) {
|
|||||||
notifyCtx, cancelNotify = notifyContext(ctx, platformsignals.TerminationSignals...)
|
notifyCtx, cancelNotify = notifyContext(ctx, platformsignals.TerminationSignals...)
|
||||||
t.Cleanup(cancelNotify)
|
t.Cleanup(cancelNotify)
|
||||||
|
|
||||||
syscall.Kill(syscall.Getpid(), syscall.SIGTERM)
|
assert.Check(t, syscall.Kill(syscall.Getpid(), syscall.SIGTERM))
|
||||||
|
|
||||||
<-notifyCtx.Done()
|
<-notifyCtx.Done()
|
||||||
assert.ErrorIs(t, context.Cause(notifyCtx), errCtxSignalTerminated{
|
assert.ErrorIs(t, context.Cause(notifyCtx), errCtxSignalTerminated{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user