io/ioutil package has been deprecated in Go 1.16 that replaces io/ioutil functions
Signed-off-by: Zou Nengren <zouyee1989@gmail.com>
This commit is contained in:
parent
0855725370
commit
1f1cad3912
@ -19,7 +19,6 @@ package fuzz
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
|
||||
@ -43,7 +42,7 @@ func testEnv() (context.Context, *bolt.DB, func(), error) {
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
ctx = namespaces.WithNamespace(ctx, "testing")
|
||||
|
||||
dirname, err := ioutil.TempDir("", "fuzz-")
|
||||
dirname, err := os.MkdirTemp("", "fuzz-")
|
||||
if err != nil {
|
||||
return ctx, nil, nil, err
|
||||
}
|
||||
@ -263,7 +262,7 @@ func testDB(opt ...testOpt) (context.Context, *metadata.DB, func(), error) {
|
||||
o(&topts)
|
||||
}
|
||||
|
||||
dirname, err := ioutil.TempDir("", "fuzzing-")
|
||||
dirname, err := os.MkdirTemp("", "fuzzing-")
|
||||
if err != nil {
|
||||
return ctx, nil, func() { cancel() }, err
|
||||
}
|
||||
|
@ -21,7 +21,6 @@ package integration
|
||||
|
||||
import (
|
||||
"context"
|
||||
"io/ioutil"
|
||||
"net"
|
||||
"os"
|
||||
"path/filepath"
|
||||
@ -147,7 +146,7 @@ func testFailFastWhenConnectShim(abstract bool, dialFn dialFunc) func(*testing.T
|
||||
}
|
||||
|
||||
func newTestListener(t testing.TB, abstract bool) (string, net.Listener, func()) {
|
||||
tmpDir, err := ioutil.TempDir("", "shim-ut-XX")
|
||||
tmpDir, err := os.MkdirTemp("", "shim-ut-XX")
|
||||
if err != nil {
|
||||
t.Fatalf("failed to create tmp directory: %v", err)
|
||||
}
|
||||
|
@ -22,7 +22,6 @@ package linux
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
@ -49,7 +48,7 @@ func TestNewBundle(t *testing.T) {
|
||||
|
||||
for i, tc := range tests {
|
||||
t.Run(strconv.Itoa(i), func(t *testing.T) {
|
||||
dir, err := ioutil.TempDir("", "test-new-bundle")
|
||||
dir, err := os.MkdirTemp("", "test-new-bundle")
|
||||
require.NoError(t, err, "failed to create test directory")
|
||||
defer os.RemoveAll(dir)
|
||||
work := filepath.Join(dir, "work")
|
||||
|
@ -20,7 +20,6 @@ import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"strconv"
|
||||
@ -48,7 +47,7 @@ func TestNewBundle(t *testing.T) {
|
||||
|
||||
for i, tc := range tests {
|
||||
t.Run(strconv.Itoa(i), func(t *testing.T) {
|
||||
dir, err := ioutil.TempDir("", "test-new-bundle")
|
||||
dir, err := os.MkdirTemp("", "test-new-bundle")
|
||||
require.NoError(t, err, "failed to create test directory")
|
||||
defer os.RemoveAll(dir)
|
||||
work := filepath.Join(dir, "work")
|
||||
|
Loading…
Reference in New Issue
Block a user