diff options
author | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-05-12 21:44:53 -0400 |
---|---|---|
committer | Andrew Gallant (Ocelot) <Andrew.Gallant@tufts.edu> | 2012-05-12 21:44:53 -0400 |
commit | 7abc9c6455b8281d5dfd5604ec6ca6fe0d459318 (patch) | |
tree | c23a9eb5c25109bb353cfaa0d95cfe936ef886db /nexgb | |
parent | 24fef4062ad441c935f5a87e908c5f293d8a2f42 (diff) | |
download | haven-7abc9c6455b8281d5dfd5604ec6ca6fe0d459318.tar.gz haven-7abc9c6455b8281d5dfd5604ec6ca6fe0d459318.tar.xz haven-7abc9c6455b8281d5dfd5604ec6ca6fe0d459318.zip |
added some docs and removed some extraneous code
Diffstat (limited to 'nexgb')
-rw-r--r-- | nexgb/xproto/xproto_test.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/nexgb/xproto/xproto_test.go b/nexgb/xproto/xproto_test.go index f061198..8d0ca88 100644 --- a/nexgb/xproto/xproto_test.go +++ b/nexgb/xproto/xproto_test.go @@ -12,7 +12,11 @@ package xproto There are also a couple of benchmarks that show the difference between correctly issuing lots of requests and gathering replies and incorrectly doing the same. (This particular difference is one of the - claimed advantages of the XCB, and therefore XGB, family. + claimed advantages of the XCB, and therefore XGB, family.) + + In sum, these tests are more focused on testing the core xgb package itself, + rather than whether xproto has properly implemented the core X client + protocol. */ import ( @@ -164,8 +168,6 @@ func TestWindowEvents(t *testing.T) { t.Fatalf("ConfigureWindow: %s", err) } - TestProperty(t) - evOrErr := waitForEvent(t, 5) switch event := evOrErr.ev.(type) { case ConfigureNotifyEvent: |