support/testing: octave: increase test timeout

Octave package test can occasionally fail due to timeout while testing
some octave modules. This commit slightly increase the timeout value
to reduce those failures.

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 4b291f1bac)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Julien Olivain
2022-08-08 22:14:24 +02:00
committed by Peter Korsgaard
parent 36807c65ba
commit bbe4a64e36

View File

@@ -76,4 +76,4 @@ class TestOctave(infra.basetest.BRTest):
for mod in octave_modules:
cmd = self.octave_cmd('assert(test(\"{}\"),true)'.format(mod))
self.assertRunOk(cmd)
self.assertRunOk(cmd, timeout=10)