summary refs log tree commit diff stats
path: root/results/classifier/gemma3:12b/files/1239
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 07:27:52 +0000
commitd0c85e36e4de67af628d54e9ab577cc3fad7796a (patch)
treef8f784b0f04343b90516a338d6df81df3a85dfa2 /results/classifier/gemma3:12b/files/1239
parent7f4364274750eb8cb39a3e7493132fca1c01232e (diff)
downloademulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.tar.gz
emulator-bug-study-d0c85e36e4de67af628d54e9ab577cc3fad7796a.zip
add deepseek and gemma results
Diffstat (limited to 'results/classifier/gemma3:12b/files/1239')
-rw-r--r--results/classifier/gemma3:12b/files/123937
1 files changed, 37 insertions, 0 deletions
diff --git a/results/classifier/gemma3:12b/files/1239 b/results/classifier/gemma3:12b/files/1239
new file mode 100644
index 00000000..5c942817
--- /dev/null
+++ b/results/classifier/gemma3:12b/files/1239
@@ -0,0 +1,37 @@
+
+The help document of qemu-img misses some options
+Description of problem:
+The "--help" option of qemu-img misses the option "skip-broken-bitmaps" for convert , "image-opts" for bench, "object" for dd and "force-share" for measure.
+Steps to reproduce:
+1. For the option "skip-broken-bitmaps", the following code appears during option parsing for convert and modifies the skip_broken in qemu-img.c:2377-2379.
+
+```
+        case OPTION_SKIP_BROKEN:
+            skip_broken = true;
+            break;
+```
+
+2. For the option "image-opts", the following code appears during option parsing for bench and modifies the image_opts in qemu-img.c:4511-4513.
+
+```
+        case OPTION_IMAGE_OPTS:
+            image_opts = true;
+            break;
+```
+3. For the option "object", the following code appears during option parsing for dd and calls the user_creatable_process_cmdline in qemu-img.c:4980-4982.
+
+```
+        case OPTION_OBJECT:
+            user_creatable_process_cmdline(optarg);
+            break;
+```
+4. For the option "force-share", the following code appears during option parsing for measure and modifies the force_share in qemu-img.c:5237-5239.
+```
+        case 'U':
+            force_share = true;
+            break;
+```
+Additional information:
+But they do not appear in the document provided by "--help".
+
+It may prevent users from using the relevant function.