Skip to content

Commit

Permalink
MAKE-189: do not run internal driver implementation on gccgo
Browse files Browse the repository at this point in the history
  • Loading branch information
tychoish committed Apr 22, 2017
1 parent 1a620c9 commit 03c4b5d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions queue/ordered_test.go
Expand Up @@ -84,6 +84,10 @@ func TestRemoteMongoDBOrderedQueueSuiteTwoWorkers(t *testing.T) {
}

func TestRemoteLocalOrderedQueueSuite(t *testing.T) {
if runtime.Compiler == "gccgo" {
t.Skip("local driver not supported on gccgo.")
}

s := &OrderedQueueSuite{}
ctx, cancel := context.WithCancel(context.Background())

Expand Down
4 changes: 4 additions & 0 deletions queue/smoke_test.go
Expand Up @@ -785,6 +785,10 @@ func TestSmokeRemoteOrderedWithWorkerPoolsAndMongoDB(t *testing.T) {
}

func TestSmokeRemoteOrderedWithWorkerPoolsAndLocalDriver(t *testing.T) {
if runtime.Compiler == "gccgo" {
t.Skip("local driver not supported on gccgo.")
}

assert := assert.New(t)

for _, poolSize := range []int{2, 4, 8, 16, 32, 64} {
Expand Down

0 comments on commit 03c4b5d

Please sign in to comment.