aboutsummaryrefslogtreecommitdiffstats
path: root/Godeps/_workspace/src/github.com/obscuren/qml/cdata/cdata_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'Godeps/_workspace/src/github.com/obscuren/qml/cdata/cdata_test.go')
-rw-r--r--Godeps/_workspace/src/github.com/obscuren/qml/cdata/cdata_test.go42
1 files changed, 0 insertions, 42 deletions
diff --git a/Godeps/_workspace/src/github.com/obscuren/qml/cdata/cdata_test.go b/Godeps/_workspace/src/github.com/obscuren/qml/cdata/cdata_test.go
deleted file mode 100644
index e7c3f33c5..000000000
--- a/Godeps/_workspace/src/github.com/obscuren/qml/cdata/cdata_test.go
+++ /dev/null
@@ -1,42 +0,0 @@
-package cdata
-
-import (
- "runtime"
- "sync"
- "testing"
-)
-
-type refPair struct {
- ref1, ref2 uintptr
-}
-
-func TestRef(t *testing.T) {
- const N = 10
- runtime.LockOSThread()
- exit := sync.WaitGroup{}
- exit.Add(1)
- defer exit.Done()
- wg := sync.WaitGroup{}
- wg.Add(N)
- ch := make(chan refPair)
- for i := 0; i < N; i++ {
- go func() {
- runtime.LockOSThread()
- wg.Done()
- ch <- refPair{Ref(), Ref()}
- exit.Wait()
- }()
- }
- wg.Wait()
- refs := make(map[uintptr]bool)
- for i := 0; i < N; i++ {
- pair := <-ch
- if pair.ref1 != pair.ref2 {
- t.Fatalf("found inconsistent ref: %d != %d", pair.ref1, pair.ref2)
- }
- if refs[pair.ref1] {
- t.Fatalf("found duplicated ref: %d", pair.ref1)
- }
- refs[pair.ref1] = true
- }
-}