aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbingoohuang <bingoo.huang@gmail.com>2019-01-23 16:24:51 +0800
committerbingoohuang <bingoo.huang@gmail.com>2019-01-23 16:24:51 +0800
commitcf0fc797ac3d28cbd93b309c53c32780e08f2e22 (patch)
tree3c8378801d33a8b18d5077fb40bec977310f015f
parent3f56b12ed40c1cebaa669003942d14af826ff42c (diff)
downloadseaweedfs-cf0fc797ac3d28cbd93b309c53c32780e08f2e22.tar.xz
seaweedfs-cf0fc797ac3d28cbd93b309c53c32780e08f2e22.zip
use tempFile.Truncate to reset file size to speedup test
-rw-r--r--weed/storage/needle_read_write_test.go4
1 files changed, 1 insertions, 3 deletions
diff --git a/weed/storage/needle_read_write_test.go b/weed/storage/needle_read_write_test.go
index 8bd9205c1..2532e6a38 100644
--- a/weed/storage/needle_read_write_test.go
+++ b/weed/storage/needle_read_write_test.go
@@ -1,9 +1,7 @@
package storage
import (
- "crypto/rand"
"github.com/chrislusf/seaweedfs/weed/storage/types"
- "io"
"io/ioutil"
"os"
"testing"
@@ -49,7 +47,7 @@ func TestAppend(t *testing.T) {
*/
fileSize := int64(4294967295) + 10000
- io.CopyN(tempFile, rand.Reader, fileSize)
+ tempFile.Truncate(fileSize)
defer func() {
tempFile.Close()
os.Remove(tempFile.Name())