blob: f07a8717b624a8ccdff6166c0b3314076847f248 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Commands covered: stty
#
# This file contains a collection of tests for one or more of the Tcl
# built-in commands. Sourcing this file into Tcl runs the tests and
# generates output for errors. No output means no errors were found.
if {[string compare test [info procs test]] == 1} then {source defs}
#exp_internal -f /dev/ttyp5 0
catch {unset x}
log_user 0
test stty-1.1 {basic stty operation} {
exp_spawn cat -u
catch {exp_stty < $spawn_out(slave,name)}
} {0}
test stty-1.2 {basic stty operation} {
exp_spawn cat -u
catch {exp_stty -echo < $spawn_out(slave,name)}
} {0}
#exp_internal 0
|