Skip to content

Commit b0cfa9a

Browse files
committed
Update shimtest to v0.2.0
Signed-off-by: Derek McGowan <derek@mcg.dev>
1 parent f4f6aff commit b0cfa9a

41 files changed

Lines changed: 1008 additions & 70 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ tasks:
6767
sh: go env GOARCH
6868
sources:
6969
- test/testbin/main.go
70-
- vendor/github.com/dmcgowan/shimtest/testbin/testbin.go
70+
- vendor/github.com/containerd/shimtest/testbin/testbin.go
7171
generates:
7272
- test/shim/testdata/testbin
7373
- test/stress/testdata/testbin

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ require (
1515
github.com/containerd/log v0.1.1-0.20260403072107-cb1839ebf76b
1616
github.com/containerd/otelttrpc v0.1.0
1717
github.com/containerd/plugin v1.1.0
18+
github.com/containerd/shimtest v0.2.0
1819
github.com/containerd/ttrpc v1.2.9-0.20260501231634-6c2eed2b612e
1920
github.com/containerd/typeurl/v2 v2.3.0
20-
github.com/dmcgowan/shimtest v0.1.7
2121
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c
2222
github.com/ebitengine/purego v0.10.1
2323
github.com/insomniacslk/dhcp v0.0.0-20250919081422-f80a1952f48e

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ github.com/containerd/platforms v1.0.0-rc.4 h1:M42JrUT4zfZTqtkUwkr0GzmUWbfyO5VO0
3737
github.com/containerd/platforms v1.0.0-rc.4/go.mod h1:lKlMXyLybmBedS/JJm11uDofzI8L2v0J2ZbYvNsbq1A=
3838
github.com/containerd/plugin v1.1.0 h1:O+7lczNJVMy8rz0YNx3xGB8tTf5qY4i5abF041Ew19U=
3939
github.com/containerd/plugin v1.1.0/go.mod h1:qBTum+A8lJ6lO44A19Eo7y1OlcLj4OWFH1DA/vnHmcc=
40+
github.com/containerd/shimtest v0.2.0 h1:hTqgBgqD26+4zL8UsNE+v0OdgtzOWFUIrGtELras8nc=
41+
github.com/containerd/shimtest v0.2.0/go.mod h1:v9b7phlmKrfn9zKHqhDyoe0kv24mxDEYyJlXFcFhjnI=
4042
github.com/containerd/ttrpc v1.2.9-0.20260501231634-6c2eed2b612e h1:uMP9FpdM40x+cvSyg6PiiINN9/b2908f8CsF/fZ438g=
4143
github.com/containerd/ttrpc v1.2.9-0.20260501231634-6c2eed2b612e/go.mod h1:IvZPGIALrdh9ZNv7AvRrKHCfwVPPCueLO2yuwj3KIqE=
4244
github.com/containerd/typeurl/v2 v2.3.0 h1:HZHPhRWo5XMy3QGQoPrUzbW/2ckwjfweHmOwlkIrPAQ=
@@ -47,8 +49,6 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
4749
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
4850
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM=
4951
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
50-
github.com/dmcgowan/shimtest v0.1.7 h1:+2+lcbK4/XkKEx7NIh/e8RwR+hCZHHBQZxd9s1zgWbw=
51-
github.com/dmcgowan/shimtest v0.1.7/go.mod h1:vV3SFMMBAY8xLOp8bO2xL3hFwlzCZWhVGTgKfV0L1EE=
5252
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c h1:+pKlWGMw7gf6bQ+oDZB4KHQFypsfjYlq/C4rfL7D3g8=
5353
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c/go.mod h1:Uw6UezgYA44ePAFQYUehOuCzmy5zmg/+nl2ZfMWGkpA=
5454
github.com/docker/go-units v0.5.0 h1:69rxXcBk27SvSaaxTtLh/8llcHD8vYHT7WSdRZ/jvr4=

test/shim/shim_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import (
3838
"github.com/containerd/typeurl/v2"
3939
"github.com/opencontainers/runtime-spec/specs-go"
4040

41-
"github.com/dmcgowan/shimtest"
41+
"github.com/containerd/shimtest"
4242
)
4343

4444
const shimBinaryName = "containerd-shim-nerdbox-v1"

test/stress/stress_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
"github.com/containerd/typeurl/v2"
4040
"github.com/opencontainers/runtime-spec/specs-go"
4141

42-
"github.com/dmcgowan/shimtest"
42+
"github.com/containerd/shimtest"
4343
)
4444

4545
const shimBinaryName = "containerd-shim-nerdbox-v1"

test/testbin/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
// shim and stress test suites can embed it in their container rootfs images.
2121
//
2222
// This main is intentionally a one-liner: all logic lives in the importable
23-
// github.com/dmcgowan/shimtest/testbin package so it is covered by
23+
// github.com/containerd/shimtest/testbin package so it is covered by
2424
// go mod vendor and stays in sync with the vendored shimtest version.
2525
package main
2626

27-
import "github.com/dmcgowan/shimtest/testbin"
27+
import "github.com/containerd/shimtest/testbin"
2828

2929
func main() { testbin.Main() }
File renamed without changes.

vendor/github.com/containerd/shimtest/.golangci.yml

Lines changed: 54 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/containerd/shimtest/AGENTS.md

Lines changed: 64 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
File renamed without changes.

0 commit comments

Comments
 (0)