summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1837909
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/1837909
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/1837909')
-rw-r--r--results/scraper/launchpad-without-comments/183790933
1 files changed, 33 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1837909 b/results/scraper/launchpad-without-comments/1837909
new file mode 100644
index 00000000..5de4293d
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1837909
@@ -0,0 +1,33 @@
+test-char fails if host has no network interfaces
+
+# ./tests/test-char 
+# random seed: R02S8602535bf831a74bca571d8c416d8161
+1..34
+# Start of char tests
+...
+ok 12 /char/websocket
+# Start of stdio tests
+# End of stdio tests
+# Start of socket tests
+# Start of server tests
+# Start of mainloop tests
+Unexpected error in inet_parse_connect_saddr() at util/qemu-sockets.c:421:
+# 
+# address resolution failed for 127.0.0.1:42275: Name or service not known
+# 
+
+Aborted (core dumped)
+
+
+# ip a
+1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
+    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
+    inet 127.0.0.1/8 scope host lo
+       valid_lft forever preferred_lft forever
+    inet6 ::1/128 scope host 
+       valid_lft forever preferred_lft forever
+
+
+This seems to be related to use of AI_ADDRCONFIG in qemu-sockets.c inet_parse_connect_saddr, dropping it fixes the test. 'man getaddrinfo' makes it sound like AI_ADDRCONFIG requires the host to have a non-loopback ipv4 or ipv6 address available
+
+This host setup may seem niche, but it is what the 'mock' RPM build tool has by default. In Fedora we run the test suite during the RPM build, so the failing test causes a bit of pain for certain workflows
\ No newline at end of file