summary refs log tree commit diff stats
path: root/results/classifier/118/graphic/1240
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/1240
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloademulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
emulator-bug-study-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/graphic/1240')
-rw-r--r--results/classifier/118/graphic/124045
1 files changed, 45 insertions, 0 deletions
diff --git a/results/classifier/118/graphic/1240 b/results/classifier/118/graphic/1240
new file mode 100644
index 00000000..c9cdd70f
--- /dev/null
+++ b/results/classifier/118/graphic/1240
@@ -0,0 +1,45 @@
+graphic: 0.904
+device: 0.874
+network: 0.854
+architecture: 0.806
+socket: 0.767
+ppc: 0.761
+KVM: 0.760
+vnc: 0.753
+x86: 0.751
+files: 0.738
+PID: 0.734
+VMM: 0.730
+TCG: 0.729
+kernel: 0.723
+performance: 0.720
+mistranslation: 0.714
+arm: 0.710
+register: 0.704
+i386: 0.678
+hypervisor: 0.668
+debug: 0.652
+risc-v: 0.628
+user-level: 0.623
+permissions: 0.607
+semantic: 0.598
+boot: 0.550
+peripherals: 0.535
+virtual: 0.333
+assembly: 0.325
+
+The help document of qemu-nbd misses an option
+Description of problem:
+The "--help" option of qemu-nbd misses the option "tls-hostname".
+Steps to reproduce:
+1. For the option "tls-hostname", the following code appears during option parsing and modifies the tlshostname in qemu-nbd.c:760-762.
+
+```
+        case QEMU_NBD_OPT_TLSHOSTNAME:
+            tlshostname = optarg;
+            break;
+```
+Additional information:
+But it does not appear in the document provided by "--help".
+
+It may prevent users from using the relevant function.