mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
24 lines
650 B
Plaintext
24 lines
650 B
Plaintext
|
#!/usr/bin/expect -f
|
|||
|
|
|||
|
log_user 0
|
|||
|
set timeout 60
|
|||
|
match_max 100000
|
|||
|
|
|||
|
# A default timeout action is to do nothing, change it to fail
|
|||
|
expect_after {
|
|||
|
timeout {
|
|||
|
exit 1
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
set basedir [file dirname $argv0]
|
|||
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion"
|
|||
|
|
|||
|
expect -re "ClickHouse client version \[\\d\]{2}.\[\\d\]{1,2}.\[\\d\]{1,2}.\[\\d\]{1,2}.\r"
|
|||
|
expect -re "Connecting to database .* at localhost:9000 as user default.\r"
|
|||
|
expect -re "Connected to ClickHouse server version \[\\d\]{2}.\[\\d\]{1,2}.\[\\d\]{1,2} revision .*\r"
|
|||
|
expect ":) "
|
|||
|
|
|||
|
send -- ""
|
|||
|
expect eof
|