summary refs log tree commit diff stats
path: root/results/classifier/zero-shot-user-mode/instruction/1701973
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-07-08 13:28:15 +0200
committerChristian Krinitsin <mail@krinitsin.com>2025-07-08 13:28:28 +0200
commit5aa276efcbd67f4300ca1a7f809c6e00aadb03da (patch)
tree9b8f0e074014cda8d42f5a97a95bc25082d8b764 /results/classifier/zero-shot-user-mode/instruction/1701973
parent1a3c4faf4e0a25ed0b86e8739d5319a634cb9112 (diff)
downloademulator-bug-study-5aa276efcbd67f4300ca1a7f809c6e00aadb03da.tar.gz
emulator-bug-study-5aa276efcbd67f4300ca1a7f809c6e00aadb03da.zip
restructure results
Diffstat (limited to 'results/classifier/zero-shot-user-mode/instruction/1701973')
-rw-r--r--results/classifier/zero-shot-user-mode/instruction/170197323
1 files changed, 23 insertions, 0 deletions
diff --git a/results/classifier/zero-shot-user-mode/instruction/1701973 b/results/classifier/zero-shot-user-mode/instruction/1701973
new file mode 100644
index 00000000..afea9599
--- /dev/null
+++ b/results/classifier/zero-shot-user-mode/instruction/1701973
@@ -0,0 +1,23 @@
+instruction: 0.472
+syscall: 0.366
+runtime: 0.162
+
+
+
+pread does not work right under qemu-sh4
+
+The pread system call returns a wrong value in some case, in a program running under qemu-sh4 (version 2.9.0).
+
+How to reproduce:
+- Compile the program:
+  sh4-linux-gnu-gcc-5 -O -Wall -static -o test-pread test-pread.c
+- Set environment variable for using qemu-sh4 (actually not needed, since the program is statically linked here).
+- ~/inst-qemu/2.9.0/bin/qemu-sh4 test-pread
+
+Expected output:
+ret=1 errno=0
+
+Actual output:
+ret=0 errno=2
+test-pread.c:44: assertion 'ret == 1' failed
+qemu: uncaught target signal 6 (Aborted) - core dumped
\ No newline at end of file