diff options
author | James Tucker <jftucker@gmail.com> | 2015-09-14 20:17:41 -0300 |
---|---|---|
committer | James Tucker <jftucker@gmail.com> | 2015-09-16 09:28:26 -0300 |
commit | 1cb787ee7bfebef44baf98158967a37735e65790 (patch) | |
tree | 6eecccc8489246641c7e47c4e2934d0e6b1e55af /db_test.go | |
parent | Merge pull request #418 from benbjohnson/revert-arm64 (diff) | |
download | dedo-1cb787ee7bfebef44baf98158967a37735e65790.tar.gz dedo-1cb787ee7bfebef44baf98158967a37735e65790.tar.xz |
windows: implement file locking
Diffstat (limited to 'db_test.go')
-rw-r--r-- | db_test.go | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -39,9 +39,6 @@ func TestOpen(t *testing.T) { // Ensure that opening an already open database file will timeout. func TestOpen_Timeout(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("timeout not supported on windows") - } if runtime.GOOS == "solaris" { t.Skip("solaris fcntl locks don't support intra-process locking") } @@ -66,9 +63,6 @@ func TestOpen_Timeout(t *testing.T) { // Ensure that opening an already open database file will wait until its closed. func TestOpen_Wait(t *testing.T) { - if runtime.GOOS == "windows" { - t.Skip("timeout not supported on windows") - } if runtime.GOOS == "solaris" { t.Skip("solaris fcntl locks don't support intra-process locking") } |