aboutsummaryrefslogtreecommitdiff
path: root/db_test.go
diff options
context:
space:
mode:
authorJames Tucker <jftucker@gmail.com>2015-09-14 20:17:41 -0300
committerJames Tucker <jftucker@gmail.com>2015-09-16 09:28:26 -0300
commit1cb787ee7bfebef44baf98158967a37735e65790 (patch)
tree6eecccc8489246641c7e47c4e2934d0e6b1e55af /db_test.go
parentMerge pull request #418 from benbjohnson/revert-arm64 (diff)
downloaddedo-1cb787ee7bfebef44baf98158967a37735e65790.tar.gz
dedo-1cb787ee7bfebef44baf98158967a37735e65790.tar.xz
windows: implement file locking
Diffstat (limited to 'db_test.go')
-rw-r--r--db_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/db_test.go b/db_test.go
index ae21938..f5df8fe 100644
--- a/db_test.go
+++ b/db_test.go
@@ -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")
}