Skip to content

Commit 4fd7ce4

Browse files
committed
split testutil/loopback_linux.go to another pkg
containerd/containerd#2694 is going to import both `containerd/pkg/testutil` and `continuity/testutil` for deduplicating `NewLoopback()`. However, as the both pkg defines `test.root` BoolVar in `init()`, the test panics. This commit avoids the panic issue by splitting `continuity/testutil/loopback_linux.go` to another pkg (`continuity/testutil/loopback`), so taht containerd does not need to import both `containerd/pkg/testutil` and `continuity/testutil`. i.e. containerd will import `containerd/pkg/testutil` and `continuity/testutil/loopback`. Signed-off-by: Akihiro Suda <[email protected]>
1 parent 98c57b8 commit 4fd7ce4

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

fs/dtype_linux_test.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import (
2525
"testing"
2626

2727
"github.com/containerd/continuity/testutil"
28+
"github.com/containerd/continuity/testutil/loopback"
2829
)
2930

3031
func testSupportsDType(t *testing.T, expected bool, mkfs ...string) {
@@ -35,7 +36,7 @@ func testSupportsDType(t *testing.T, expected bool, mkfs ...string) {
3536
}
3637
defer os.RemoveAll(mnt)
3738

38-
deviceName, cleanupDevice, err := testutil.NewLoopback(100 << 20) // 100 MB
39+
deviceName, cleanupDevice, err := loopback.New(100 << 20) // 100 MB
3940
if err != nil {
4041
t.Fatal(err)
4142
}

testutil/loopback_linux.go testutil/loopback/loopback_linux.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
limitations under the License.
1717
*/
1818

19-
package testutil
19+
package loopback
2020

2121
import (
2222
"io/ioutil"
@@ -28,8 +28,8 @@ import (
2828
"github.com/sirupsen/logrus"
2929
)
3030

31-
// NewLoopback creates a loopback device, and returns its device name (/dev/loopX), and its clean-up function.
32-
func NewLoopback(size int64) (string, func() error, error) {
31+
// New creates a loopback device, and returns its device name (/dev/loopX), and its clean-up function.
32+
func New(size int64) (string, func() error, error) {
3333
// create temporary file for the disk image
3434
file, err := ioutil.TempFile("", "containerd-test-loopback")
3535
if err != nil {

0 commit comments

Comments
 (0)