#
# noecho does not behave like solaris nor ncurses
# ours turns cbreak off when noecho is in effect, others don't..
# should we fix?  This test will fail as written due to this behaviour
#
include start
call OK echo
input "a"
call 0x61 getch
compare /dev/null
call OK noecho
input "b"
call 0x62 getch
compare /dev/null
call OK echo
input "c"
call 0x63 getch
compare /dev/null
