Skip to content

Commit

Permalink
v23: RIP modules, long live gosh+v23test
Browse files Browse the repository at this point in the history
Also, per discussion:
- Moves 'v23test' package to x/ref/test/v23test
- Makes 'expect' package explicitly depend on 'testing', now
that 'modules' doesn't pass it an interface

MultiPart: 1/7

Change-Id: I63a8cc8405b7377778a12364671cdea066b40c72
  • Loading branch information
asadovsky committed Jan 13, 2016
1 parent bc27809 commit c61dbf9
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion syncbase/featuretests/blob_v23_test.go
Expand Up @@ -16,8 +16,8 @@ import (
"v.io/v23/naming"
wire "v.io/v23/services/syncbase/nosql"
"v.io/v23/syncbase"
"v.io/x/ref/lib/v23test"
"v.io/x/ref/services/syncbase/server/util"
"v.io/x/ref/test/v23test"
)

func TestV23BlobWholeTransfer(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/client_v23_test.go
Expand Up @@ -8,7 +8,7 @@ import (
"testing"

"v.io/v23/syncbase"
"v.io/x/ref/lib/v23test"
"v.io/x/ref/test/v23test"
)

func TestV23SyncbasedPutGet(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/cr_v23_test.go
Expand Up @@ -17,9 +17,9 @@ import (
"v.io/v23/syncbase"
"v.io/v23/syncbase/nosql"
"v.io/v23/verror"
"v.io/x/ref/lib/v23test"
"v.io/x/ref/services/syncbase/server/util"
"v.io/x/ref/test/testutil"
"v.io/x/ref/test/v23test"
)

// Tests the conflict resolution configuration rules.
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/restartability_v23_test.go
Expand Up @@ -21,8 +21,8 @@ import (
"v.io/v23/syncbase/nosql"
"v.io/v23/verror"
"v.io/v23/vom"
"v.io/x/ref/lib/v23test"
tu "v.io/x/ref/services/syncbase/testutil"
"v.io/x/ref/test/v23test"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/syncgroup_v23_test.go
Expand Up @@ -17,8 +17,8 @@ import (
"v.io/v23/naming"
"v.io/v23/security"
"v.io/v23/security/access"
"v.io/x/ref/lib/v23test"
constants "v.io/x/ref/services/syncbase/server/util"
"v.io/x/ref/test/v23test"
)

// TestV23SyncgroupRendezvousOnline tests that Syncbases can join a syncgroup
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/test_util_test.go
Expand Up @@ -18,8 +18,8 @@ import (
wire "v.io/v23/services/syncbase/nosql"
"v.io/v23/syncbase"
"v.io/v23/syncbase/nosql"
"v.io/x/ref/lib/v23test"
tu "v.io/x/ref/services/syncbase/testutil"
"v.io/x/ref/test/v23test"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/v23_main_test.go
Expand Up @@ -8,8 +8,8 @@ import (
"os"
"testing"

"v.io/x/ref/lib/v23test"
_ "v.io/x/ref/runtime/factories/generic"
"v.io/x/ref/test/v23test"
)

func TestMain(m *testing.M) {
Expand Down
2 changes: 1 addition & 1 deletion syncbase/featuretests/vclock_v23_test.go
Expand Up @@ -11,9 +11,9 @@ import (
"v.io/v23/context"
"v.io/v23/naming"
wire "v.io/v23/services/syncbase"
"v.io/x/ref/lib/v23test"
"v.io/x/ref/services/syncbase/server/util"
tu "v.io/x/ref/services/syncbase/testutil"
"v.io/x/ref/test/v23test"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion syncbase/nosql/syncgroup_v23_test.go
Expand Up @@ -21,9 +21,9 @@ import (
"v.io/v23/syncbase"
"v.io/v23/syncbase/nosql"
"v.io/v23/verror"
"v.io/x/ref/lib/v23test"
_ "v.io/x/ref/runtime/factories/generic"
constants "v.io/x/ref/services/syncbase/server/util"
"v.io/x/ref/test/v23test"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion vtrace/format.go
Expand Up @@ -30,7 +30,7 @@ func (a annotations) Less(i, j int) bool { return a[i].When.Before(a[j].When) }
func (a annotations) Swap(i, j int) { a[i], a[j] = a[j], a[i] }

type Node struct {
Span *SpanRecord
Span *SpanRecord
Children []*Node
}

Expand Down

0 comments on commit c61dbf9

Please sign in to comment.