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
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
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
Hide 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>
//
Kirill Smelkov <kirr@nexedi.com>
//
//
// This program is free software: you can Use, Study, Modify and Redistribute
// This program is free software: you can Use, Study, Modify and Redistribute
// it under the terms of the GNU General Public License version 3, or (at your
// it under the terms of the GNU General Public License version 3, or (at your
...
@@ -29,9 +29,9 @@ import (
...
@@ -29,9 +29,9 @@ import (
"testing"
"testing"
"github.com/pkg/errors"
"github.com/pkg/errors"
"golang.org/x/sync/errgroup"
"lab.nexedi.com/kirr/go123/exc"
"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/internal/xtesting"
"lab.nexedi.com/kirr/neo/go/zodb"
"lab.nexedi.com/kirr/neo/go/zodb"
)
)
...
@@ -65,14 +65,14 @@ func TestWatch(t *testing.T) {
...
@@ -65,14 +65,14 @@ func TestWatch(t *testing.T) {
stor
,
err
:=
zodb
.
Open
(
bg
,
tfs
,
&
zodb
.
OpenOptions
{
ReadOnly
:
true
});
X
(
err
)
stor
,
err
:=
zodb
.
Open
(
bg
,
tfs
,
&
zodb
.
OpenOptions
{
ReadOnly
:
true
});
X
(
err
)
// spawn plain and verbose watchers
// spawn plain and verbose watchers
ctx
0
,
cancel
:=
context
.
WithCancel
(
bg
)
ctx
,
cancel
:=
context
.
WithCancel
(
bg
)
wg
,
ctx
:=
errgroup
.
WithContext
(
ctx0
)
wg
:=
xsync
.
NewWorkGroup
(
ctx
)
// gowatch spawns Watch(verbose) and returns expectf() func that is
// gowatch spawns Watch(verbose) and returns expectf() func that is
// connected to verify Watch output.
// connected to verify Watch output.
gowatch
:=
func
(
verbose
bool
)
/*expectf*/
func
(
format
string
,
argv
...
interface
{})
{
gowatch
:=
func
(
verbose
bool
)
/*expectf*/
func
(
format
string
,
argv
...
interface
{})
{
pr
,
pw
:=
io
.
Pipe
()
pr
,
pw
:=
io
.
Pipe
()
wg
.
Go
(
func
()
error
{
wg
.
Go
(
func
(
ctx
context
.
Context
)
error
{
return
Watch
(
ctx
,
stor
,
pw
,
verbose
)
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