blob: 80822e321d210094731cd13dcee1c8b3455c1a30 [file] [log] [blame]
#!/usr/bin/expect -f
set timeout 1
spawn $env(YANGLINT)
expect -exact "> "
send -- "feature -a\r"
expect {
"feature -a\r
yang:\r
\t(none)\r
\r
ietf-yang-schema-mount:\r
\t(none)\r
\r
> " { }
timeout { exit 1 }
}
send -- "exit\r"
expect eof