summary refs log tree commit diff stats
path: root/results/classifier/118/graphic/1401
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/1401
parentb89a938452613061c0f1f23e710281cf5c83cb29 (diff)
downloadqemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.tar.gz
qemu-analysis-9aba81d8eb048db908c94a3c40c25a5fde0caee6.zip
add 18th iteration of classifier
Diffstat (limited to 'results/classifier/118/graphic/1401')
-rw-r--r--results/classifier/118/graphic/140150
1 files changed, 50 insertions, 0 deletions
diff --git a/results/classifier/118/graphic/1401 b/results/classifier/118/graphic/1401
new file mode 100644
index 000000000..5b6c5e7e6
--- /dev/null
+++ b/results/classifier/118/graphic/1401
@@ -0,0 +1,50 @@
+graphic: 0.931
+device: 0.786
+mistranslation: 0.726
+ppc: 0.661
+kernel: 0.629
+debug: 0.573
+network: 0.553
+semantic: 0.533
+PID: 0.509
+vnc: 0.468
+x86: 0.416
+i386: 0.412
+socket: 0.410
+user-level: 0.388
+boot: 0.383
+arm: 0.368
+hypervisor: 0.359
+performance: 0.335
+VMM: 0.327
+architecture: 0.311
+peripherals: 0.309
+TCG: 0.302
+KVM: 0.301
+files: 0.300
+risc-v: 0.286
+register: 0.248
+assembly: 0.135
+permissions: 0.112
+virtual: 0.099
+
+configure uses break outside loop
+Description of problem:
+When running `configure` in version 7.2.0, the following message is printed multiple times:
+
+```
+qemu/configure: line 1885: break: only meaningful in a `for', `while', or `until' loop
+```
+Steps to reproduce:
+Running `configure` should be enough. My complete configure command is:
+
+```
+/bin/bash ./configure \
+    --prefix=$PREFIX/qemu --sysconfdir=/etc$PREFIX/qemu \
+    --includedir=$PREFIX/qemu/include --bindir=$PREFIX/qemu/bin \
+    --sbindir=$PREFIX/qemu/sbin --libdir=$PREFIX/qemu/lib/amd64 \
+    --libexecdir=$PREFIX/qemu/libexec/amd64 \
+    --localstatedir=/var$PREFIX/qemu
+```
+Additional information:
+The `configure` script has `break;` in a conditional, where `:` would suffice (or the conditional could just be negated)