Sign in
fuchsia
/
third_party
/
github.com
/
moby
/
moby
/
cbd94183abd05880d293f1235707209d7fe593b8
/
.
/
pkg
/
chrootarchive
/
archive_unix_nolinux_test.go
blob: a051814845ba71e70786ee5f13fc4c86c728ca49 [
file
]
//go:build unix && !linux
package chrootarchive
// import "github.com/docker/docker/pkg/chrootarchive"
import (
"testing"
"github.com/docker/docker/pkg/reexec"
)
func TestMain(m *testing.M) {
if reexec.Init() {
return
}
m.Run()
}