summaryrefslogtreecommitdiff
path: root/gps
diff options
context:
space:
mode:
authorGreg Troxel <gdt@ir.bbn.com>2015-02-03 11:25:05 -0500
committerGreg Troxel <gdt@ir.bbn.com>2015-02-03 16:17:25 -0500
commit6a3a2185bc3e7729d3c78fbb9750843a0b720571 (patch)
tree0b188bcf766a3470f0be62d38cb21bfee85f510f /gps
parent046b1ff21be0bc4875d4bf5c84db0cfd2cc37395 (diff)
downloadgpsd-6a3a2185bc3e7729d3c78fbb9750843a0b720571.tar.gz
Update os x timing data; shorten delay.
Diffstat (limited to 'gps')
-rw-r--r--gps/fake.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/gps/fake.py b/gps/fake.py
index a5a65cb2..33f59509 100644
--- a/gps/fake.py
+++ b/gps/fake.py
@@ -134,14 +134,9 @@ import packet as sniffer
# WRITE_PAD = 0.200 / CLOSE_DELAY = 0.8 all tests passed (6310s)
#
# Greg Troxel running OS X 10.9 on a Core i7 (2 cpus) 1.7 GHz.
-# WRITE_PAD = 0.01 / CLOSE_DELAY = 4 had 81/89 failures (767s)
-# WRITE_PAD = 0.01 / CLOSE_DELAY = 10 had 81/89 failures (1288s)
-# WRITE_PAD = 0.03 / CLOSE_DELAY = 1 all tests passed (1111s)
-# WRITE_PAD = 0.03 / CLOSE_DELAY = 2 all tests passed (1194s)
-# WRITE_PAD = 0.05 / CLOSE_DELAY = 2 all tests passed (1780s)
-# WRITE_PAD = 0.1 / CLOSE_DELAY = 2 all tests passed (3248s)
-# WRITE_PAD = 1 / CLOSE_DELAY = 2 all tests passed (29665s)
-# WRITE_PAD = 1 / CLOSE_DELAY = 10 all tests passed (30362s)
+# >= release-3.11-344-gef39b1c
+# WRITE_PAD = 0.01 / CLOSE_DELAY = 1 all tests passed (536s)
+# WRITE_PAD = 0.03 / CLOSE_DELAY = 1 all tests passed (1113s)
# examples are "# sys.platform platform.platform()"
@@ -159,7 +154,7 @@ elif sys.platform.startswith("netbsd"):
CLOSE_DELAY = 0.8
elif sys.platform.startswith("darwin"):
# darwin Darwin-13.4.0-x86_64-i386-64bit
- WRITE_PAD = 0.03
+ WRITE_PAD = 0.01
CLOSE_DELAY = 1
else:
WRITE_PAD = 0.004