summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1133769
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:24:58 +0000
committerChristian Krinitsin <mail@krinitsin.com>2025-06-30 12:27:06 +0000
commit33606b41d35115f887ea688b1a16f2ff85bf2fe4 (patch)
tree406b2c7b19a087ba437c68f3dbf0b589fa1d6150 /results/scraper/launchpad-without-comments/1133769
parentadedf8771bc4de3113041ca21bd4d0d1c0014b6a (diff)
downloademulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.tar.gz
emulator-bug-study-33606b41d35115f887ea688b1a16f2ff85bf2fe4.zip
add launchpad bug reports without comments
Diffstat (limited to 'results/scraper/launchpad-without-comments/1133769')
-rw-r--r--results/scraper/launchpad-without-comments/113376927
1 files changed, 27 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1133769 b/results/scraper/launchpad-without-comments/1133769
new file mode 100644
index 00000000..aee4fcd2
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1133769
@@ -0,0 +1,27 @@
+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.
\ No newline at end of file