summary refs log tree commit diff stats
path: root/results/classifier/deepseek-2-tmp/output/files/1796
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/deepseek-2-tmp/output/files/1796')
-rw-r--r--results/classifier/deepseek-2-tmp/output/files/179617
1 files changed, 0 insertions, 17 deletions
diff --git a/results/classifier/deepseek-2-tmp/output/files/1796 b/results/classifier/deepseek-2-tmp/output/files/1796
deleted file mode 100644
index 9e4e6e1c..00000000
--- a/results/classifier/deepseek-2-tmp/output/files/1796
+++ /dev/null
@@ -1,17 +0,0 @@
-
-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
-```