diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-02-06 20:55:18 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-02-06 20:55:18 +0100 |
commit | d45dddd5823151152ca54fef06c1298d5506b5a0 (patch) | |
tree | b4b542aa88b45768cbfefb3a97fcf58ac0eb804b | |
parent | 102e7c1020f3d863b95c66d6423af8975eb24902 (diff) | |
download | vyos-build-d45dddd5823151152ca54fef06c1298d5506b5a0.tar.gz vyos-build-d45dddd5823151152ca54fef06c1298d5506b5a0.zip |
Revert "Testsuite: check for smoketest error"
This reverts commit baa7ab9fa106b09e33b1bdf706630ddd204010a2. Reason
is that somehow smoketest is no longer executed at all :(
-rwxr-xr-x | scripts/check-qemu-install | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index a6cc9b60..0c443f18 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -293,7 +293,6 @@ try: i = child.expect(['\n +Invalid command:', '\n +Set failed', 'No such file or directory', - 'SMOKETEST FAILED!', r'\n\S+@\S+[$#]'], timeout=1800) if i==0: @@ -303,10 +302,7 @@ try: elif i==2: log.error("Did not find VyOS smoketest, this should be an exception") raise Exception("WTF? did not find VyOS smoketest, this should be an exception") - elif i==3: - log.error("Smoketest failed with an non-zero exitcode") - - cr(c, '/usr/bin/vyos-smoketest || echo "SMOKETEST FAILED!"') + cr(c, '/usr/bin/vyos-smoketest') log.info("Smoke test status") #data = c.before.decode() |