File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ go build -v .
16
16
popd
17
17
18
18
# Run the memory intensive tests first.
19
- go test -v --manual=true - run=' TestBigKeyValuePairs$'
20
- go test -v --manual=true - run=' TestPushValueLogLimit'
19
+ go test -v -run=' TestBigKeyValuePairs$' --manual=true
20
+ go test -v -run=' TestPushValueLogLimit' --manual=true
21
21
22
22
# Run the special Truncate test.
23
23
rm -rf p
24
- go test -v --manual=true - run=' TestTruncateVlogNoClose$' .
24
+ go test -v -run=' TestTruncateVlogNoClose$' --manual=true
25
25
truncate --size=4096 p/000000.vlog
26
- go test -v --manual=true - run=' TestTruncateVlogNoClose2$' .
27
- go test -v --manual=true - run=' TestTruncateVlogNoClose3$' .
26
+ go test -v -run=' TestTruncateVlogNoClose2$' --manual=true
27
+ go test -v -run=' TestTruncateVlogNoClose3$' --manual=true
28
28
rm -rf p
29
29
30
30
# Then the normal tests.
40
40
echo " ==> Starting tests with value log mmapped..."
41
41
sleep 5
42
42
# Run top level package tests with mmap flag.
43
- go test -v --vlog_mmap=true - race github.com/dgraph-io/badger/v2
43
+ go test -v -race github.com/dgraph-io/badger/v2 --vlog_mmap=true
44
44
echo
45
45
echo " ==> Starting tests with value log not mmapped..."
46
46
sleep 5
47
- go test -v --vlog_mmap=false - race github.com/dgraph-io/badger/v2
47
+ go test -v -race github.com/dgraph-io/badger/v2 --vlog_mmap=false
48
48
You can’t perform that action at this time.
0 commit comments