mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
Pass mptest multiwrite on Windows.
This commit is contained in:
@@ -74,10 +74,7 @@ func system(ctx context.Context, mod api.Module, ptr uint32) uint32 {
|
||||
|
||||
args := strings.Split(string(buf), " ")
|
||||
for i := range args {
|
||||
a, err := strconv.Unquote(args[i])
|
||||
if err == nil {
|
||||
args[i] = a
|
||||
}
|
||||
args[i] = strings.Trim(args[i], `"`)
|
||||
}
|
||||
args = args[:len(args)-1]
|
||||
|
||||
@@ -126,9 +123,6 @@ func Test_crash01(t *testing.T) {
|
||||
}
|
||||
|
||||
func Test_multiwrite01(t *testing.T) {
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip() // TODO: remove
|
||||
}
|
||||
log = &logger{T: t}
|
||||
ctx := context.TODO()
|
||||
name := filepath.Join(t.TempDir(), "test.db")
|
||||
|
||||
1
tests/mptest/testdata/.gitattributes
vendored
1
tests/mptest/testdata/.gitattributes
vendored
@@ -1 +1,2 @@
|
||||
mptest.wasm filter=lfs diff=lfs merge=lfs -text
|
||||
*.test* -crlf
|
||||
Reference in New Issue
Block a user