summary refs log tree commit diff stats
path: root/results/classifier/118/graphic/1796
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:00 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-16 16:59:33 +0000
commit9aba81d8eb048db908c94a3c40c25a5fde0caee6 (patch)
treeb765e7fb5e9a3c2143c68b0414e0055adb70e785 /results/classifier/118/graphic/1796
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloadqemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
qemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/graphic/1796')
-rw-r--r--results/classifier/118/graphic/179646
1 files changed, 46 insertions, 0 deletions
diff --git a/results/classifier/118/graphic/1796 b/results/classifier/118/graphic/1796
new file mode 100644
index 000000000..931c2c568
--- /dev/null
+++ b/results/classifier/118/graphic/1796
@@ -0,0 +1,46 @@
+graphic: 0.911
+device: 0.788
+mistranslation: 0.669
+semantic: 0.585
+files: 0.542
+assembly: 0.524
+PID: 0.524
+performance: 0.499
+network: 0.451
+hypervisor: 0.411
+i386: 0.401
+architecture: 0.377
+ppc: 0.364
+x86: 0.324
+VMM: 0.313
+socket: 0.300
+vnc: 0.291
+permissions: 0.274
+kernel: 0.272
+KVM: 0.268
+TCG: 0.262
+boot: 0.257
+debug: 0.227
+peripherals: 0.218
+user-level: 0.211
+register: 0.209
+arm: 0.200
+risc-v: 0.199
+virtual: 0.166
+
+qemu-img does not accept backing image file path, only file name
+Description of problem:
+In `qemu-img create ... -b <backing_image> ... <snapshot_image>`, <backing_image> cannot be a file path, but must be a file name. <backing_image> and <snapshot_image> are forced to be in the same directory for the command to work.
+Steps to reproduce:
+```
+$ mkdir test
+$ qemu-img create -f qcow2 test/a.img 1G
+...
+$ qemu-img create -f qcow2 -b test/a.img -F qcow2 test/a.img.snap
+qemu-img: test/a.img.snap: Could not open 'test/test/a.img': No such file or directory
+Could not open backing image.
+$ qemu-img create -f qcow2 -b a.img -F qcow2 test/a.img.snap
+...
+$ ls test
+a.img  a.img.snap
+```