summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorChristian Breunig <christian@breunig.cc>2024-12-31 14:13:58 +0100
committerChristian Breunig <christian@breunig.cc>2024-12-31 14:20:49 +0100
commit81ae7efbac6cce251092ae91719611007a07a5f7 (patch)
tree12d58b98f2e67e2fb3890d10e8cda35afc722fe9 /scripts
parent20b20efcca3a7c1d5e7acc375e31afbc212784cf (diff)
downloadvyos-build-81ae7efbac6cce251092ae91719611007a07a5f7.tar.gz
vyos-build-81ae7efbac6cce251092ae91719611007a07a5f7.zip
Testsuite: T6991: inform smoketest about this environment
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-qemu-install5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/check-qemu-install b/scripts/check-qemu-install
index 0a5e3970..755a8307 100755
--- a/scripts/check-qemu-install
+++ b/scripts/check-qemu-install
@@ -536,12 +536,17 @@ try:
c.sendline('systemd-detect-virt')
c.expect('kvm')
c.expect(op_mode_prompt)
+
# Ensure ephemeral key is loaded
vyos_kernel_key = 'VyOS build time autogenerated kernel key'
c.sendline(f'show log kernel | match "{vyos_kernel_key}"')
c.expect(f'.*{vyos_kernel_key}.*')
c.expect(op_mode_prompt)
+ # Inform smoketest about this environment
+ c.sendline('touch /tmp/vyos.smoketests.hint')
+ c.expect(op_mode_prompt)
+
#################################################
# Executing test-suite
#################################################