INNER CODE UNIT · Python
startOneTest
google/oboe · apps/OboeTester/scripts/dsp_timing.py:121
def startOneTest(offset):
print "=========================="
setOutputOffset(offset)
print "try offset = " + getAndroidProperty(kPropertyOutputOffset)
subprocess.call(["adb", "shell", "rm", gOutputFile, "2>/dev/null"])
def runOneGlitchTest(offset):
startOneTest(offset)
print launchGlitchTest()
pairs = waitForTestResult()
if checkPeakAmplitude(pairs):
return -1
if not pairs.has_key('glitch.count'):
print "ERROR no glitch.count"
return -1
return int(pairs['glitch.count'])
def runOneLatencyTest(offset):