v2 / vlib / v / debug / tests / mut_arg.expect
9 lines · 8 sloc · 197 bytes · 5310c102a6b62144bc08274884ca3e681ceb1296
Raw
1#!/usr/bin/env expect
2source "common.tcl"
3
4expect "Break on *main* test_mut in ${test_file}:10\r\n"
5expect "${test_file}:10 vdbg> "
6send "p b\n"
7expect "b = foo (&main.Test)"
8send "q\n"
9expect eof
10