finish testing

This commit is contained in:
Productive2 2021-02-26 14:58:04 +01:00
parent d4d2f52ec1
commit fd037908f0
1 changed files with 40 additions and 42 deletions

View File

@ -9,65 +9,61 @@ Unless otherwise specified, everything falls back to Artix linux (basically the
| Terminal | Last tested and worked | | Terminal | Last tested and worked |
| :-------- | :------------ | | :-------- | :------------ |
| xfce terminal | passed on 19.2.2021 | | xfce terminal | passed on 26.2.2021 |
| konsole | passed on 19.2.2021 | | konsole | passed on 26.2.2021 |
| alacritty | passed on 19.2.2021 | | alacritty | passed on 26.2.2021 |
| xterm | passed on 19.2.2021 | | xterm | passed on 26.2.2021 |
| urxvt | failed on 19.2.2021 (probably not vt100 comp) | | termite | passed on 26.2.2021 |
| cmd.exe | never | | urxvt | passed on 26.2.2021 |
| powershell | never | | win 10 + cmd.exe | 26.2.2021: see notes |
| windows terminal | never | | win 10 + powershell | 26.2.2021: see notes |
| cygwin | never | | xfce terminal + ssh | passed on 26.2.2021 |
| termux/android | never | | xfce terminal + tmux | 26.2.2021: see notes |
| xfce terminal + ssh | passed on 19.2.2021 | | tty | 26.2.2021: see notes |
| xfce terminal + tmux | failed on 19.2.2021 |
| tty | ? on 19.2.2021 (see notes) |
| freebsd tty | ? on 19.2.2021 (see notes) |
| freebsd xterm | passed on 19.2.2021 | | freebsd xterm | passed on 19.2.2021 |
| freebsd xfce term | passed on 19.2.2021 | | freebsd xfce term | passed on 19.2.2021 |
| debian xterm | passed on 19.2.2021 | | debian xterm | passed on 19.2.2021 |
| debian qterminal | passed on 19.2.2021 | | debian qterminal | passed on 19.2.2021 |
| debian kitty | passed on 19.2.2021 | | debian kitty | passed on 19.2.2021 |
| nim 1.0.0 | failed to compile on 19.2.2021 | | nim 1.0.0 | passed on 26.2.2021 |
Info about testing dates: Info about testing dates:
| Testing date | commit | | Testing date | commit |
| :----------- | :-------- | | :----------- | :-------- |
| 19.2.2021 | 12c7c28714508e7a1c16bcd7b3fa1372c4a19ae2 | | 19.2.2021 | 12c7c28714508e7a1c16bcd7b3fa1372c4a19ae2 |
| 26.2.2021 | d4d2f52ec13a3c5cfea2cdce2d09777317de3545 |
## Notes (open in a text editor to see this section well) ## Notes on 26.2.2021
urxvt: Ctrl+down outputted a "b", so most likely different escape sequence (not the usual vt100). ### Found issues
The following sequences are in out of the box urxvt:
ctrl up: 27, 79, 97
ctrl down: 27, 79, 98
ctrl left: 27, 79, 100
ctrl right: 27, 79, 99
ctrl pgup: 27, 91, 53, 94
ctrl pgdn: 27, 91, 54, 94
ctrl home: 27, 91, 55, 94
ctrl end: 27, 91, 56, 94
home: 27, 91, 55, 126
end: 27, 91, 56, 126
already should be fixed, will update at next testing date
tmux, the following input differs: - (minor, doesn't affect repls) examples/editor does not scroll to the
end: 27, 91, 52, 126 end right after opening when opening a file too large to fit in the screen.
home: 27, 91, 49, 126
(ctrl versions fine)
tty: - (minor) examples/interactive_history when a history element is taller than the screen,
ctrl makes no difference on arrow keys it can cause issues with the rendering of the next history element when scrolling
home: 27, 91, 49, 126 through history
end: 27, 91, 52, 126
home/end already should be fixed, will update at next testing date
freebsd tty: ### tmux notes
ctrl makes no difference on arrow keys
nim 1.0.0: - ctrl+pageup and ctrl+page down do not create any input (not even for getch)
already should be fixed, will update at next testing date - otherwise pass
### tty notes
- ctrl+(arrow keys) does not create a distinct key
### powershell notes
- editor issues:
- on horizontal scroll conditions the line can overflow causing rendering bugs
- on vertical scroll + page up the first line could disappear (maybe only when first line is a horizontal scroll candidate)
- very slow experience, a lot of cursor jumping
### cmd.exe notes
- same issues as powershell
# Testing procedure # Testing procedure
@ -84,4 +80,6 @@ examples/editor
- [ ] Clears the screen well - [ ] Clears the screen well
- [ ] Writing small files - [ ] Writing small files
- [ ] Reading small files - [ ] Reading small files
- [ ] horizontal scroll
- [ ] vertical scroll