代码拉取完成,页面将自动刷新
#!/usr/bin/env python3
#
# This file is Copyright 2010 by the GPSD project
# SPDX-License-Identifier: BSD-2-clause
#
# This code runs compatibly under Python 2 and 3.x for x >= 2.
# Preserve this property!
"""
This is a valgrind torture test for the gpsd daemon.
It's not really expected to spot anything as long as we aren't using
malloc and friends in the daemon.
"""
from __future__ import absolute_import, print_function, division
import sys
import gps.fake
debuglevel = 1
invocation = "valgrind --tool=memcheck --gen-suppressions=yes " \
"--leak-check=yes --suppressions=valgrind-suppressions"
test = gps.fake.TestSession(prefix=invocation, options="-D %d" % debuglevel)
test.progress = sys.stderr.write
try:
test.spawn()
print("\n*** Test #1: Normal single-client-session behavior.")
print("**** Add a GPS.\n")
gps1 = test.gps_add("test/daemon/bu303-moving.log")
print("\n**** Add and remove a client.\n")
c1 = test.client_add("w\n")
test.gather(3)
test.client_remove(c1)
print("\n**** Remove the GPS.")
test.gps_remove(gps1)
print("*** Test #1 complete.\n")
test.wait(3)
######################################################################
print("\n*** Test #2: Successive non-overlapping client sessions.")
print("**** Add a GPS.\n")
gps1 = test.gps_add("test/daemon/bu303-climbing.log")
print("\n**** Add and remove first client.\n")
c1 = test.client_add("w\n")
test.gather(3)
test.client_remove(c1)
test.wait(3)
print("\n**** Add and remove second client.\n")
c2 = test.client_add("w\n")
test.gather(3)
test.client_remove(c2)
test.wait(3)
print("\n**** Remove the GPS.")
test.gps_remove(gps1)
print("*** Test #2 complete.\n")
test.wait(3)
######################################################################
print("\n*** Test #3: Overlapping client sessions.")
print("**** Add a GPS.\n")
gps1 = test.gps_add("test/daemon/bu303-climbing.log")
print("\n**** Add first client.\n")
c1 = test.client_add("w\n")
test.gather(2)
print("\n**** Add second client.\n")
c2 = test.client_add("w\n")
test.gather(3)
print("\n**** Remove first client.\n")
test.client_remove(c1)
test.gather(2)
print("\n**** Remove second client.\n")
test.client_remove(c2)
print("\n**** Remove the GPS.")
test.gps_remove(gps1)
print("*** Test #3 complete.\n")
######################################################################
print("\n*** Test #4: GPS removed while client still active.")
print("**** Add a GPS.\n")
gps1 = test.gps_add("test/daemon/bu303-moving.log")
print("\n**** Add a client.\n")
c1 = test.client_add("w\n")
test.gather(3)
print("\n**** Remove the GPS.")
test.gps_remove(gps1)
test.wait(3)
print("\n**** Remove the client.\n")
test.client_remove(c1)
print("*** Test #4 complete.\n")
finally:
test.cleanup()
# The following sets edit modes for GNU EMACS
# Local Variables:
# mode:python
# End:
# vim: set expandtab shiftwidth=4
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。