summary refs log tree commit diff stats
path: root/results/classifier/zero-shot-user-mode/instruction/1228
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/1228
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/1228')
-rw-r--r--results/classifier/zero-shot-user-mode/instruction/122849
1 files changed, 49 insertions, 0 deletions
diff --git a/results/classifier/zero-shot-user-mode/instruction/1228 b/results/classifier/zero-shot-user-mode/instruction/1228
new file mode 100644
index 00000000..c105dd0a
--- /dev/null
+++ b/results/classifier/zero-shot-user-mode/instruction/1228
@@ -0,0 +1,49 @@
+instruction: 0.523
+syscall: 0.244
+runtime: 0.233
+
+
+
+-display curses only recognizes escape characters if pressed very quickly
+Description of problem:
+The system start and runs perfectly fine, but when I try to exit the escape commands does not seem to work.
+
+I have tried all the ones from here:
+https://www.qemu.org/docs/master/system/keys.html
+https://www.qemu.org/docs/master/system/mux-chardev.html
+
+When using the graphical display, the escape characters works as expected but when using -display curses, they do not.
+Steps to reproduce:
+1. Start qemu with the command provided 
+2. Try to exit using ctrl + x a - Not working
+3. Try to exit using alt + 2 - Not working
+
+The same issues occurs when running qemu on a Linux machine (Ubunt) via Visual Studio Code / ssh. 
+
+I'm guessing this is a macOS specific issue or maybe something to do with my Locale (sv-SE).
+Additional information:
+Linux 0.01 build:
+https://github.com/mariuz/linux-0.01
+
+**Tests using showkey**
+
+Alt + 2 from mobile ssh client (Terminus) -> Ubuntu machine
+```
+^[2      27 0033 0x1b
+         50 0062 0x32
+```
+
+Option + 2 from macOS Terminal + ssh -> Ubuntu machine
+```
+@ 	 64 0100 0x40
+```
+
+Esc + 2 from macOS Terminal + ssh -> Ubuntu machine
+```
+^[ 	 27 0033 0x1b
+2 	 50 0062 0x32
+```
+
+**Update**
+
+It seems to work if I press ESC + 2 at exactly the same time.