Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go-fuse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go-fuse
Commits
e8f397ba
Commit
e8f397ba
authored
Dec 06, 2011
by
Han-Wen Nienhuys
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix thinkos in tests.
parent
7b832016
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
benchmark/stat_test.go
benchmark/stat_test.go
+2
-2
example/loopback/main.go
example/loopback/main.go
+1
-0
zipfs/multizip_test.go
zipfs/multizip_test.go
+2
-1
No files found.
benchmark/stat_test.go
View file @
e8f397ba
...
...
@@ -169,8 +169,8 @@ func BenchmarkGoFuseThreadedStat(b *testing.B) {
ttl
:=
100
*
time
.
Millisecond
opts
:=
fuse
.
FileSystemOptions
{
EntryTimeout
:
ttl
.
Seconds
()
,
AttrTimeout
:
ttl
.
Seconds
()
,
EntryTimeout
:
ttl
,
AttrTimeout
:
ttl
,
NegativeTimeout
:
0.0
,
}
wd
,
clean
:=
setupFs
(
fs
,
&
opts
)
...
...
example/loopback/main.go
View file @
e8f397ba
...
...
@@ -10,6 +10,7 @@ import (
"log"
"os"
"runtime"
"time"
)
var
_
=
runtime
.
GOMAXPROCS
...
...
zipfs/multizip_test.go
View file @
e8f397ba
...
...
@@ -6,12 +6,13 @@ import (
"log"
"os"
"testing"
"time"
)
var
_
=
log
.
Printf
var
CheckSuccess
=
fuse
.
CheckSuccess
const
testTtl
=
0.1
const
testTtl
=
100
*
time
.
Millisecond
func
setupMzfs
()
(
mountPoint
string
,
cleanup
func
())
{
fs
:=
NewMultiZipFs
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment