summary refs log tree commit diff stats
path: root/results/classifier/accel-gemma3:12b/kvm/483
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 16:27:09 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 16:27:09 +0000
commit4d9e26c0333abd39bdbd039dcdb30ed429c475ba (patch)
tree4010d5fb3e8bc48c110a2c1ff2a16b8648cb86bb /results/classifier/accel-gemma3:12b/kvm/483
parent5541099586dbd6018574cb44e1934907c121526f (diff)
downloademulator-bug-study-4d9e26c0333abd39bdbd039dcdb30ed429c475ba.tar.gz
emulator-bug-study-4d9e26c0333abd39bdbd039dcdb30ed429c475ba.zip
add gemma accelerator classification results
Diffstat (limited to 'results/classifier/accel-gemma3:12b/kvm/483')
-rw-r--r--results/classifier/accel-gemma3:12b/kvm/48326
1 files changed, 26 insertions, 0 deletions
diff --git a/results/classifier/accel-gemma3:12b/kvm/483 b/results/classifier/accel-gemma3:12b/kvm/483
new file mode 100644
index 00000000..75b53057
--- /dev/null
+++ b/results/classifier/accel-gemma3:12b/kvm/483
@@ -0,0 +1,26 @@
+
+qemu doesn't process -object secret when read from a config file
+Description of problem:
+Qemu doesn't process -object secret lines when read from a config file.  This results in the new spice password-secret option failing with error: No secret with id '\<theid\>'
+Steps to reproduce:
+1. Create a password file
+```
+printf "password" > passfile.pw
+```
+2. Start qemu with command line options and also write to a config file
+```
+qemu-system-x86_64 \
+  -object secret,id=spicepwd,format=raw,file=passfile.pw \
+  -spice port=5901,password-secret=spicepwd \
+  -writeconfig qemu.cfg
+```
+3. Optional: Connect using spice client and password: "password"
+4. Exit qemu and cat qemu.cfg and verify it looks okay with equivalent options to what was specified on the command line
+5. Now attempt to start qemu and read the options using the config file
+```
+qemu-system-x86_64 -readconfig qemu.cfg
+```
+6. This fails with an error:
+```
+qemu-system-x86_64: No secret with id 'spicepwd'
+```