I need to revisit code that I had written several years ago, and need to test this in the testing tool. However, I am not able to see my echos in the testing tool. Silly questions please help me remember
proc EOB_835_Processing_test { args } {
keylget args MODE mode
switch -exact — $mode {
time {
set in_dir [file join $::HciRoot testdev FTP EOB STRIP IN]
echo “MADE IT”
set out_dir [file join $::HciRoot testdev FTP EOB OUT]
set files_to_scan “*.dat”
set rVal [EOBSubs::build_batch $in_dir $out_dir $files_to_scan]
echo “[fmtclock [clock seconds]] $rVal”
return “”
}
}
}