diff options
author | Daniil Baturin <daniil@vyos.io> | 2025-01-30 15:18:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-30 15:18:52 +0000 |
commit | d6917d4fc9fbd120c810eb3dc3d8e2af211e3716 (patch) | |
tree | 5d292261f7c1cc1327584af5e941fd1abb9c7eba /scripts | |
parent | 16f9226b1f86967607c685b791a4c214fd6010b1 (diff) | |
parent | 5f4e2acd1684a905db23e708c155fbed4a9f9ea0 (diff) | |
download | vyos-build-d6917d4fc9fbd120c810eb3dc3d8e2af211e3716.tar.gz vyos-build-d6917d4fc9fbd120c810eb3dc3d8e2af211e3716.zip |
Merge pull request #894 from sever-sever/T7106-smoketest
T7106: Extend check-qemu-install to show vpp version
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/check-qemu-install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install index b7b009b2..89219c40 100755 --- a/scripts/check-qemu-install +++ b/scripts/check-qemu-install @@ -554,6 +554,8 @@ try: c.expect(op_mode_prompt) c.sendline('show system memory') c.expect(op_mode_prompt) + c.sendline("show version all | match vpp") + c.expect(op_mode_prompt) ################################################# # Verify /etc/os-release via lsb_release |