From dee4dcba78baf712cab403d47d9db319ab7f95d6 Mon Sep 17 00:00:00 2001 From: Christian Krinitsin Date: Thu, 3 Jul 2025 19:39:53 +0200 Subject: restructure results --- results/classifier/108/PID/1133769 | 47 --------- results/classifier/108/PID/1708551 | 157 ---------------------------- results/classifier/108/PID/1760 | 68 ------------- results/classifier/108/PID/1821054 | 68 ------------- results/classifier/108/PID/1857811 | 204 ------------------------------------- results/classifier/108/PID/2423 | 49 --------- results/classifier/108/PID/655 | 47 --------- 7 files changed, 640 deletions(-) delete mode 100644 results/classifier/108/PID/1133769 delete mode 100644 results/classifier/108/PID/1708551 delete mode 100644 results/classifier/108/PID/1760 delete mode 100644 results/classifier/108/PID/1821054 delete mode 100644 results/classifier/108/PID/1857811 delete mode 100644 results/classifier/108/PID/2423 delete mode 100644 results/classifier/108/PID/655 (limited to 'results/classifier/108/PID') diff --git a/results/classifier/108/PID/1133769 b/results/classifier/108/PID/1133769 deleted file mode 100644 index 379ff210..00000000 --- a/results/classifier/108/PID/1133769 +++ /dev/null @@ -1,47 +0,0 @@ -PID: 0.996 -other: 0.996 -files: 0.993 -semantic: 0.984 -performance: 0.983 -socket: 0.980 -graphic: 0.980 -device: 0.975 -debug: 0.970 -vnc: 0.940 -KVM: 0.932 -permissions: 0.930 -network: 0.929 -boot: 0.810 - -qtest failures leave orphaned qemu processes hanging around - -If a qtest test case fails, it leaves orphaned qemu processes hanging around. On Fedora 18 with qemu.git as of today ( Feb 26 2013), the patch just forces a test failure - -ps axwww | grep qemu | grep -v grep -$ make check-qtest-x86_64 - CC tests/rtc-test.o - LINK tests/rtc-test -GTESTER check-qtest-x86_64 - -$ ps axwww | grep qemu | grep -v grep -$ patch -p1 < force-test-failure.patch -patching file tests/rtc-test.c - -$ make check-qtest-x86_64 - CC tests/rtc-test.o - LINK tests/rtc-test -GTESTER check-qtest-x86_64 -** -ERROR:tests/rtc-test.c:256:bcd_check_time: assertion failed: (0) -GTester: last random seed: R02Sf2521dda395a2713128e0cbf86651a21 -make: *** [check-qtest-x86_64] Error 1 - -$ ps axwww | grep qemu | grep -v grep -26258 pts/0 Sl 0:00 x86_64-softmmu/qemu-system-x86_64 -qtest unix:/tmp/qtest-26256.sock,nowait -qtest-log /dev/null -qmp unix:/tmp/qtest-26256.qmp,nowait -pidfile /tmp/qtest-26256.pid -machine accel=qtest -display none -rtc clock=vm - -The problem is that an assertion failure in a test case causes the test program to exit(2) without hitting the qtest cleanup. - -I think this has been fixed sometime in the past already. Or can you still reproduce this problem with the latest version of QEMU? - -It appears this is fixed, I haven't seen it in a while - diff --git a/results/classifier/108/PID/1708551 b/results/classifier/108/PID/1708551 deleted file mode 100644 index 69564041..00000000 --- a/results/classifier/108/PID/1708551 +++ /dev/null @@ -1,157 +0,0 @@ -PID: 0.955 -permissions: 0.940 -graphic: 0.940 -other: 0.934 -socket: 0.934 -boot: 0.934 -device: 0.929 -performance: 0.928 -network: 0.923 -semantic: 0.918 -files: 0.917 -debug: 0.916 -vnc: 0.899 -KVM: 0.896 - -macOS Guest Reading USB 3.0 Bus as USB 2.0 - -Description: -I'm having trouble with USB Passthrough. Running `system_profiler SPUSBDataType` on macOS guest confirms that the system "sees" my device, and that qemu is passing *something* through. However, the system sees my connection as USB 2.0, even though i'm passing through XHCI controllers (nec-usb-xhci/qemu-xhci). I suspect this is the reason why my guest is unable to recognize my iPhone in XCode & iTunes. - -Parameters: -QEMU release version: 2.10.0-rc0 -Bios: [patched version of OVMF](https://github.com/gsomlo/edk2/tree/macboot)] -Command Line: https://pastebin.com/pBSYbrW1 -Host: Arch Linux -Guest: macOS v10.12.6 -Guest System Info: https://pastebin.com/U1Tihxei - -Notes: -1. Observed sometime after late-May-early-June of this year. - -2. Due to [a defect in qemu v2.8 which affected GTK users](https://bugs.launchpad.net/qemu/+bug/1578192), and [a recent change to macOS' booting process conflicting with qemu v2.9](https://lists.nongnu.org/archive/html/qemu-devel/2017-03/msg06366.html), i'm forced to use qemu v2.10.0-rc0 (as -rc1 fails to load OVMF right now). - -Could you please try to run QEMU without the "-usb" option here? "-usb" automatically creates an EHCI and UHCI controller on the q35 machine, so that might be the reason that your USB devices get connected as USB 2.0 instead. - -Doing so returns: -`qemu-system-x86_64: -device usb-tablet,bus=usb-bus.0: Bus 'usb-bus.0' not found` - -> On Aug 4, 2017, at 2:31 AM, Thomas Huth