Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neoppod
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
neoppod
Commits
ab7c6d27
Commit
ab7c6d27
authored
Jul 07, 2020
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
go/zodb/zodbtools: tests: errgroup -> xsync.WorkGroup
See
kirr/go123@515a6d14
parent
09185538
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
go/zodb/zodbtools/watch_test.go
go/zodb/zodbtools/watch_test.go
+6
-6
No files found.
go/zodb/zodbtools/watch_test.go
View file @
ab7c6d27
// Copyright (C) 2019 Nexedi SA and Contributors.
// Copyright (C) 2019
-2020
Nexedi SA and Contributors.
// Kirill Smelkov <kirr@nexedi.com>
//
// This program is free software: you can Use, Study, Modify and Redistribute
...
...
@@ -29,9 +29,9 @@ import (
"testing"
"github.com/pkg/errors"
"golang.org/x/sync/errgroup"
"lab.nexedi.com/kirr/go123/exc"
"lab.nexedi.com/kirr/go123/xsync"
"lab.nexedi.com/kirr/neo/go/internal/xtesting"
"lab.nexedi.com/kirr/neo/go/zodb"
)
...
...
@@ -65,14 +65,14 @@ func TestWatch(t *testing.T) {
stor
,
err
:=
zodb
.
Open
(
bg
,
tfs
,
&
zodb
.
OpenOptions
{
ReadOnly
:
true
});
X
(
err
)
// spawn plain and verbose watchers
ctx
0
,
cancel
:=
context
.
WithCancel
(
bg
)
wg
,
ctx
:=
errgroup
.
WithContext
(
ctx0
)
ctx
,
cancel
:=
context
.
WithCancel
(
bg
)
wg
:=
xsync
.
NewWorkGroup
(
ctx
)
// gowatch spawns Watch(verbose) and returns expectf() func that is
// connected to verify Watch output.
gowatch
:=
func
(
verbose
bool
)
/*expectf*/
func
(
format
string
,
argv
...
interface
{})
{
pr
,
pw
:=
io
.
Pipe
()
wg
.
Go
(
func
()
error
{
wg
.
Go
(
func
(
ctx
context
.
Context
)
error
{
return
Watch
(
ctx
,
stor
,
pw
,
verbose
)
})
...
...
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