summary refs log tree commit diff stats
path: root/results/classifier/118/all/2264
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/118/all/2264')
-rw-r--r--results/classifier/118/all/226487
1 files changed, 87 insertions, 0 deletions
diff --git a/results/classifier/118/all/2264 b/results/classifier/118/all/2264
new file mode 100644
index 00000000..85b83b8c
--- /dev/null
+++ b/results/classifier/118/all/2264
@@ -0,0 +1,87 @@
+register: 0.951
+graphic: 0.950
+semantic: 0.948
+device: 0.947
+debug: 0.946
+performance: 0.945
+architecture: 0.944
+peripherals: 0.943
+permissions: 0.942
+arm: 0.939
+assembly: 0.939
+user-level: 0.938
+PID: 0.935
+virtual: 0.935
+ppc: 0.934
+VMM: 0.933
+hypervisor: 0.933
+files: 0.931
+TCG: 0.930
+boot: 0.929
+kernel: 0.929
+risc-v: 0.928
+network: 0.925
+KVM: 0.925
+vnc: 0.923
+socket: 0.923
+mistranslation: 0.922
+x86: 0.921
+i386: 0.904
+
+tests fail in staging-7.2 after "fix direction of "32-bit MMU" patch
+Description of problem:
+Running the tests with current staging-7.2 sources after compiling, it results in failing some tests after introduction of the following patches:
+
+- [target/i386: introduce function to query MMU indices](https://gitlab.com/qemu-project/qemu/-/commit/6332f3c12f7fc6c01fae1eaa59d661fef280f499)
+
+- [target/i386: use separate MMU indexes for 32-bit accesses](https://gitlab.com/qemu-project/qemu/-/commit/6b9875b03c81351c5f0268f571e011cf5f2fd9d2)
+
+- [target/i386: fix direction of "32-bit MMU" test](https://gitlab.com/qemu-project/qemu/-/commit/64e5fffe523daee23b06f3fd0f31721b137901b5)
+
+- [target/i386: Revert monitor_puts() in do_inject_x86_mce()](https://gitlab.com/qemu-project/qemu/-/commit/1d024cdc49a9ebc4d51142d2c33668bba1d31c89)
+
+in particular is the fix:
+
+- [target/i386: fix direction of "32-bit MMU" test](https://gitlab.com/qemu-project/qemu/-/commit/64e5fffe523daee23b06f3fd0f31721b137901b5)
+
+that causes the tests failing (removing such fix, tests passes). The failing tests are:
+
+```
+Summary of Failures:
+
+ 92/689 qemu:qtest+qtest-i386 / qtest-i386/boot-serial-test                       ERROR           0.10s   killed by signal 6 SIGABRT
+127/689 qemu:qtest+qtest-x86_64 / qtest-x86_64/boot-serial-test                   ERROR           0.12s   killed by signal 6 SIGABRT
+ 48/689 qemu:qtest+qtest-i386 / qtest-i386/bios-tables-test                       ERROR          40.95s   killed by signal 6 SIGABRT
+ 71/689 qemu:qtest+qtest-x86_64 / qtest-x86_64/bios-tables-test                   ERROR          40.45s   killed by signal 6 SIGABRT
+```
+
+In particular we have:
+
+```
+ 92/689 qemu:qtest+qtest-i386 / qtest-i386/boot-serial-test                       ERROR           0.10s   killed by signal 6 SIGABRT
+――――――――――――――――――――――――――――――――――――― ✀  ―――――――――――――――――――――――――――――――――――――
+stderr:
+Broken pipe
+../tests/qtest/libqtest.c:188: kill_qemu() detected QEMU death from signal 11 (Segmentation fault) (core dumped)
+
+(test program exited with status code -6)
+――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
+```
+
+and
+
+
+```
+127/689 qemu:qtest+qtest-x86_64 / qtest-x86_64/boot-serial-test                   ERROR           0.12s   killed by signal 6 SIGABRT
+――――――――――――――――――――――――――――――――――――― ✀  ―――――――――――――――――――――――――――――――――――――
+stderr:
+Broken pipe
+../tests/qtest/libqtest.c:188: kill_qemu() detected QEMU death from signal 11 (Segmentation fault) (core dumped)
+
+(test program exited with status code -6)
+
+TAP parsing error: Too few tests run (expected 2, got 0)
+――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――
+```
+
+and so on.