summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorCleber Rosa2019-09-19 18:14:00 +0200
committerCleber Rosa2019-09-20 22:24:53 +0200
commit20869f9865b2e2571304aaee0fd269a6b598f31e (patch)
treeef739ca47fb3a1ca32a7da478e123c5ca577cb55 /tests
parentMerge remote-tracking branch 'remotes/cleber/tags/python-next-pull-request' i... (diff)
downloadqemu-20869f9865b2e2571304aaee0fd269a6b598f31e.tar.gz
qemu-20869f9865b2e2571304aaee0fd269a6b598f31e.tar.xz
qemu-20869f9865b2e2571304aaee0fd269a6b598f31e.zip
Acceptance test machine_m68k_nextcube.py: relax the error code pattern
Instead of looking for a specific error, let's relax the pattern because different errors have been seen (I'm consistenly getting 52) and the real goal of this test is to validate the framebuffer operation, and not to reproduce one specific error. Signed-off-by: Cleber Rosa <crosa@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Thomas Huth <huth@tuxfamily.org> Message-Id: <20190919161400.26399-1-crosa@redhat.com> Signed-off-by: Cleber Rosa <crosa@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/acceptance/machine_m68k_nextcube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/acceptance/machine_m68k_nextcube.py b/tests/acceptance/machine_m68k_nextcube.py
index e09cab9f20..fcd2c58ee7 100644
--- a/tests/acceptance/machine_m68k_nextcube.py
+++ b/tests/acceptance/machine_m68k_nextcube.py
@@ -116,6 +116,6 @@ class NextCubeMachine(Test):
if len(line):
console_logger.debug(line)
self.assertIn('Testing the FPU, SCC', text)
- self.assertIn('System test failed. Error code 51', text)
+ self.assertIn('System test failed. Error code', text)
self.assertIn('Boot command', text)
self.assertIn('Next>', text)