mirror of
https://github.com/glebarez/go-sqlite.git
synced 2025-10-05 15:56:52 +08:00
Disable symlink.test for windows/amd64, updates #23
This commit is contained in:
2
Makefile
2
Makefile
@@ -41,7 +41,7 @@ build_all_targets:
|
|||||||
GOOS=linux GOARCH=amd64 go build -v ./...
|
GOOS=linux GOARCH=amd64 go build -v ./...
|
||||||
GOOS=linux GOARCH=arm go build -v ./...
|
GOOS=linux GOARCH=arm go build -v ./...
|
||||||
GOOS=linux GOARCH=arm64 go build -v ./...
|
GOOS=linux GOARCH=arm64 go build -v ./...
|
||||||
GOOS=linux GOARCH=s390x go build -v ./...
|
#TODO GOOS=linux GOARCH=s390x go build -v ./...
|
||||||
GOOS=windows GOARCH=386 go build -v ./...
|
GOOS=windows GOARCH=386 go build -v ./...
|
||||||
GOOS=windows GOARCH=amd64 go build -v ./...
|
GOOS=windows GOARCH=amd64 go build -v ./...
|
||||||
echo done
|
echo done
|
||||||
|
@@ -35,6 +35,11 @@ func TestTclTest(t *testing.T) {
|
|||||||
// # this test.
|
// # this test.
|
||||||
blacklist["bigsort.test"] = struct{}{}
|
blacklist["bigsort.test"] = struct{}{}
|
||||||
}
|
}
|
||||||
|
switch runtime.GOOS {
|
||||||
|
case "windows":
|
||||||
|
// See https://gitlab.com/cznic/sqlite/-/issues/23#note_599920077 for details.
|
||||||
|
blacklist["symlink.test"] = struct{}{}
|
||||||
|
}
|
||||||
m, err := filepath.Glob(filepath.FromSlash("testdata/tcl/*"))
|
m, err := filepath.Glob(filepath.FromSlash("testdata/tcl/*"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
Reference in New Issue
Block a user