summary refs log tree commit diff stats
path: root/results/classifier/zero-shot/108/other/2088
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-03 19:39:53 +0200
commitdee4dcba78baf712cab403d47d9db319ab7f95d6 (patch)
tree418478faf06786701a56268672f73d6b0b4eb239 /results/classifier/zero-shot/108/other/2088
parent4d9e26c0333abd39bdbd039dcdb30ed429c475ba (diff)
downloademulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.tar.gz
emulator-bug-study-dee4dcba78baf712cab403d47d9db319ab7f95d6.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot/108/other/2088')
-rw-r--r--results/classifier/zero-shot/108/other/208836
1 files changed, 36 insertions, 0 deletions
diff --git a/results/classifier/zero-shot/108/other/2088 b/results/classifier/zero-shot/108/other/2088
new file mode 100644
index 00000000..2eeee9a9
--- /dev/null
+++ b/results/classifier/zero-shot/108/other/2088
@@ -0,0 +1,36 @@
+network: 0.903
+graphic: 0.891
+permissions: 0.887
+files: 0.874
+device: 0.858
+PID: 0.817
+socket: 0.787
+vnc: 0.714
+semantic: 0.695
+debug: 0.673
+boot: 0.601
+performance: 0.598
+other: 0.492
+KVM: 0.146
+
+Building qemu fails on Solaris 11.4
+Description of problem:
+Building qemu-system-hppa on Solaris 11.4 (details above) fails because in qga/commands-posix.c
+
+(1) Solaris does not have net/ethernet.h
+```
+ #if defined(__NetBSD__) || defined(__OpenBSD__)
+ #include <net/if_arp.h>
+ #include <netinet/if_ether.h>
+ #else
+ #include <net/ethernet.h>
+ #endif
+```
+Solaris *does* have net/if_arp.h and netinet/if_ether.h
+
+(2) Solaris does not define ETHER_ADDR_LEN, instead it defines ETHERADDRL
+Steps to reproduce:
+1. '../configure' '--disable-docs' '--disable-rdma' '--target-list=hppa-softmmu'
+2. gmake
+Additional information:
+