原创 TCL/EXPECT自动化测试脚本实例五 --- 由文件中读取一行收藏

新一篇: 用TCL编写了一个生成密码字典的小测试程序,共享一下 | 旧一篇: TCL/EXPECT自动化测试脚本实例四 --- 批命令执行

代码见下,比较简单,就不再分析了。调用实例见前面的文章。

#************************************************
# get a line from file, skip blank lines and
# comment lines, return the reading line in
# parameter 'line'.
#
# @PARAMS
# fd     - file fd
# line   - var used to return the line
#
# @RETURN
# return 1 if read successfully, otherwise 0
#************************************************
proc getLine {fd line} {
    upvar $line ln

    # read a line from fd
    while {[set lineLen [gets $fd ln]] >= 0} {
        # blank line
        if { $lineLen == 0 } continue
 
        # trim whitespace
        set ln [string trim $ln]
        if { [string length $ln] == 0 } continue

        # skip comment
        if { [string index $ln 0] == "#" } continue

        # success
        return 1
    }

    return 0
}

发表于 @ 2006年05月30日 10:31:00|评论(loading...)|编辑

新一篇: 用TCL编写了一个生成密码字典的小测试程序,共享一下 | 旧一篇: TCL/EXPECT自动化测试脚本实例四 --- 批命令执行

评论:没有评论。

发表评论  


登录
Csdn Blog version 3.1a
Copyright © Easwy