Skip to content

Commit

Permalink
skip test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
lidavidm committed Jan 7, 2025
1 parent f8cef51 commit 4e42a49
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions go/adbc/driver/flightsql/flightsql_adbc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1055,6 +1055,14 @@ type DomainSocketTests struct {
}

func (suite *DomainSocketTests) SetupSuite() {
// This doesn't appear to run under Windows
// transport: Error while dialing: dial unix
// /Users/RUNNER~1/AppData/Local/Temp/adbc-flight-sql-tests-1919020904/adbc.sock:
// connect: A socket operation encountered a dead network.
if runtime.GOOS == "windows" {
suite.T().Skip()
}

suite.alloc = memory.NewCheckedAllocator(memory.DefaultAllocator)

tempDir, err := os.MkdirTemp("", "adbc-flight-sql-tests-*")
Expand Down

0 comments on commit 4e42a49

Please sign in to comment.