v2 / vlib / v / debug / tests / iteration.expect
21 lines · 20 sloc · 341 bytes · 5310c102a6b62144bc08274884ca3e681ceb1296
Raw
1#!/usr/bin/env expect
2source "common.tcl"
3
4expect "0"
5expect "1"
6expect "2"
7expect "4"
8expect "${test_file}:3 vdbg> "
9send "p x\n"
10expect "x = 5 (int literal)"
11send "c\n"
12expect "${test_file}:3 vdbg> "
13send "p x\n"
14expect "x = 6 (int literal)"
15send "c\n"
16expect "${test_file}:3 vdbg> "
17send "q\n"
18expect "7"
19expect "8"
20expect "9"
21expect eof
22