mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
CI: Fix regex in ulp_adc example test
This commit is contained in:
parent
4547c0876a
commit
6358f3fb8a
@ -16,10 +16,14 @@ def test_examples_ulp_adc(env, extra_data):
|
||||
|
||||
for _ in range(5):
|
||||
dut.expect('Deep sleep wakeup', timeout=60)
|
||||
measurements = int(dut.expect(re.compile(r'ULP did (\d+) measurements'), timeout=5)[0], 10)
|
||||
measurements_str = dut.expect(re.compile(r'ULP did (\d+) measurements'), timeout=5)[0]
|
||||
assert measurements_str is not None
|
||||
measurements = int(measurements_str)
|
||||
Utility.console_log('ULP did {} measurements'.format(measurements))
|
||||
dut.expect('Thresholds: low=1500 high=2000', timeout=5)
|
||||
value = int(dut.expect(re.compile(r'Value=(\d+) was (?:below)|(?:above) threshold'), timeout=5)[0], 10)
|
||||
value_str = dut.expect(re.compile(r'Value=(\d+) was (above|below) threshold'), timeout=5)[0]
|
||||
assert value_str is not None
|
||||
value = int(value_str)
|
||||
Utility.console_log('Value {} was outside the boundaries'.format(value))
|
||||
dut.expect('Entering deep sleep', timeout=60)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user