⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 collection.exp

📁 lwip在ucos上的移植
💻 EXP
📖 第 1 页 / 共 2 页
字号:
	    "collect $msg: collected locarray #1"    gdb_test "print locar\[2\]" \	    "\\$\[0-9\]+ = 123$cr" \	    "collect $msg: collected locarray #2"    gdb_test "print locar\[3\]" \	    "\\$\[0-9\]+ = 124$cr" \	    "collect $msg: collected locarray #3"	        gdb_test "tfind none" \	    "#0  end .*" \	    "collect $msg: cease trace debugging"}proc gdb_collect_registers_test { myregs } {    global cr    global gdb_prompt    # Make sure we're in a sane starting state.    gdb_test "tstop" "" ""    gdb_test "tfind none" "" ""    gdb_delete_tracepoints    # We'll simply re-use the args_test_function for this test    gdb_test "trace args_test_func" \	    "Tracepoint \[0-9\]+ at .*" \	    "collect $myregs: set tracepoint"    gdb_trace_setactions "collect $myregs: define actions" \	    "" \	    "collect $myregs" "^$"    # Begin the test.    run_trace_experiment $myregs args_test_func    test_register "\$fp" $myregs    test_register "\$sp" $myregs    test_register "\$pc" $myregs    gdb_test "tfind none" \	    "#0  end .*" \	    "collect $myregs: cease trace debugging"}proc gdb_collect_expression_test { func expr val msg } {    global cr    global gdb_prompt    # Make sure we're in a sane starting state.    gdb_test "tstop" "" ""    gdb_test "tfind none" "" ""    gdb_delete_tracepoints    # Find the comment-identified line for setting this tracepoint.    set testline 0    send_gdb "list $func, +30\n"    gdb_expect {	-re "\[\r\n\](\[0-9\]+)\[^\r\n\]+ Set_Tracepoint_Here .*$gdb_prompt" {	    set testline $expect_out(1,string)	    pass "collect $msg: find tracepoint line"	}	-re ".*$gdb_prompt " {	    fail "collect $msg: find tracepoint line (skipping locals test)"	    return	}	timeout {	    fail "collect $msg: find tracepoint line (skipping locals test)"	    return	}    }    gdb_test "trace $testline" \	    "Tracepoint \[0-9\]+ at .*" \	    "collect $msg: set tracepoint"    gdb_trace_setactions "collect $msg: define actions" \	    "" \	    "collect $expr" "^$"    # Begin the test.    run_trace_experiment $msg $func    gdb_test "print $expr" \	    "\\$\[0-9\]+ = $val$cr" \	    "collect $msg: got expected value '$val'"    gdb_test "tfind none" \	    "#0  end .*" \	    "collect $msg: cease trace debugging"}proc gdb_collect_globals_test { } {    global cr    global gdb_prompt    # Make sure we're in a sane starting state.    gdb_test "tstop" "" ""    gdb_test "tfind none" "" ""    gdb_delete_tracepoints    # Find the comment-identified line for setting this tracepoint.    set testline 0    send_gdb "list globals_test_func, +30\n"    gdb_expect {	-re "\[\r\n\](\[0-9\]+)\[^\r\n\]+ Set_Tracepoint_Here .*$gdb_prompt" {	    set testline $expect_out(1,string)	    pass "collect globals: find tracepoint line"	}	-re ".*$gdb_prompt " {	    fail "collect globals: find tracepoint line (skipping global test)"	    return	}	timeout {	    fail "collect globals: find tracepoint line (skipping global test)"	    return	}    }    gdb_test "trace $testline" \	    "Tracepoint \[0-9\]+ at .*" \	    "collect globals: set tracepoint"    gdb_trace_setactions "collect globals: define actions" \	    "" \	    "collect globalc, globali, globalf, globald" "^$" \	    "collect globalstruct, globalp, globalarr" "^$"    # Begin the test.    run_trace_experiment "globals" globals_test_func    gdb_test "print globalc" \	    "\\$\[0-9\]+ = 71 'G'$cr" \	    "collect globals: collected global char"    gdb_test "print globali" \	    "\\$\[0-9\]+ = 72$cr" \	    "collect globals: collected global int"    gdb_test "print globalf" \	    "\\$\[0-9\]+ = 73.\[23\]\[0-9\]*$cr" \	    "collect globals: collected global float"    gdb_test "print globald" \	    "\\$\[0-9\]+ = 74.\[34\]\[0-9\]*$cr" \	    "collect globals: collected global double"    gdb_test "print globalstruct.memberc" \	    "\\$\[0-9\]+ = 81 'Q'$cr" \	    "collect globals: collected struct char member"    gdb_test "print globalstruct.memberi" \	    "\\$\[0-9\]+ = 82$cr" \	    "collect globals: collected struct member int"    gdb_test "print globalstruct.memberf" \	    "\\$\[0-9\]+ = 83.\[23\]\[0-9\]*$cr" \	    "collect globals: collected struct member float"    gdb_test "print globalstruct.memberd" \	    "\\$\[0-9\]+ = 84.\[34\]\[0-9\]*$cr" \	    "collect globals: collected struct member double"    gdb_test "print globalp == &globalstruct" \	    "\\$\[0-9\]+ = 1$cr" \	    "collect globals: collected global pointer"    gdb_test "print globalarr\[1\]" \	    "\\$\[0-9\]+ = 1$cr" \	    "collect globals: collected global array element #1"    gdb_test "print globalarr\[2\]" \	    "\\$\[0-9\]+ = 2$cr" \	    "collect globals: collected global array element #2"    gdb_test "print globalarr\[3\]" \	    "\\$\[0-9\]+ = 3$cr" \	    "collect globals: collected global array element #3"    gdb_test "tfind none" \	    "#0  end .*" \	    "collect globals: cease trace debugging"}proc gdb_trace_collection_test { } {    global gdb_prompt;    gdb_test "set width 0" "" ""    delete_breakpoints    # We generously give ourselves one "pass" if we successfully     # detect that this test cannot be run on this target!    if { ![gdb_target_supports_trace] } then { 	pass "Current target does not supporst trace"	return 1;    }    gdb_test "break begin" "" ""    gdb_test "break end"   "" ""    gdb_collect_args_test "\$args" \	    "args collectively"    gdb_collect_args_test "argc, argi, argf, argd, argstruct, argarray" \	    "args individually"    gdb_collect_argstruct_test "\$args" \	    "argstruct collectively"    gdb_collect_argstruct_test "argstruct" \	    "argstruct individually"    gdb_collect_argarray_test "\$args" \	    "argarray collectively"    gdb_collect_argarray_test "argarray" \	    "argarray individually"    gdb_collect_locals_test local_test_func "\$locals" \	    "auto locals collectively"    gdb_collect_locals_test local_test_func \	    "locc, loci, locf, locd, locst, locar" \	    "auto locals individually"    gdb_collect_locals_test reglocal_test_func "\$locals" \	    "register locals collectively"    gdb_collect_locals_test reglocal_test_func \	    "locc, loci, locf, locd, locst, locar" \	    "register locals individually"    gdb_collect_locals_test statlocal_test_func "\$locals" \	    "static locals collectively"    gdb_collect_locals_test statlocal_test_func \	    "locc, loci, locf, locd, locst, locar" \	    "static locals individually"        gdb_collect_registers_test "\$regs"    gdb_collect_registers_test "\$fp, \$sp, \$pc"    gdb_collect_globals_test        #    # Expression tests:    #    # *x	(**x, ...)    # x.y	(x.y.z, ...)    # x->y	(x->y->z, ...)    # x[2]	(x[2][3], ...) (const index)    # x[y]	(x[y][z], ...) (index to be char, short, long, float, double)    #  NOTE:    #  We test the following operators by using them in an array index    #  expression -- because the naked result of an operator is not really    #  collected.  To be sure the operator was evaluated correctly on the    #  target, we have to actually use the result eg. in an array offset    #  calculation.    # x[y +  z] (tests addition: y and z various combos of types, sclasses)    # x[y -  z] (tests subtraction) (ditto)    # x[y *  z] (tests multiplication) (ditto)    # x[y /  z] (tests division) (ditto)    # x[y %  z] (tests modulo division) (ditto)    # x[y == z] (tests equality relation) (ditto)              UNSUPPORTED    # x[y != z] (tests inequality relation) (ditto)            UNSUPPORTED    # x[y >  z] (tests greater-than relation) (ditto)          UNSUPPORTED    # x[y <  z] (tests less-than relation) (ditto)             UNSUPPORTED    # x[y >= z] (tests greater-than-or-equal relation) (ditto) UNSUPPORTED    # x[y <= z] (tests less-than-or-equal relation) (ditto)    UNSUPPORTED    # x[y && z] (tests logical and) (ditto)                    UNSUPPORTED    # x[y || z] (tests logical or) (ditto)                     UNSUPPORTED    # x[y &  z] (tests binary and) (ditto)                     UNSUPPORTED    # x[y |  z] (tests binary or) (ditto)                      UNSUPPORTED    # x[y ^  z] (tests binary xor) (ditto)                     UNSUPPORTED    # x[y ? z1 : z2] (tests ternary operator) (ditto)          UNSUPPORTED    # x[y << z] (tests shift-left) (ditto)                     UNSUPPORTED    # x[y >> z] (tests shift-right) (ditto)                    UNSUPPORTED    # x[y =  z] (tests assignment operator) (ditto)            UNSUPPORTED    # x[++y]    (tests pre-increment operator) (ditto)         UNSUPPORTED    # x[--y]    (tests pre-decrement operator) (ditto)         UNSUPPORTED    # x[y++]    (tests post-increment operator) (ditto)        UNSUPPORTED    # x[y--]    (tests post-decrement operator) (ditto)        UNSUPPORTED    # x[+y]     (tests unary plus) (ditto)    # x[-y]     (tests unary minus) (ditto)    # x[!y]     (tests logical not) (ditto)                    UNSUPPORTED    # x[~y]     (tests binary not) (ditto)                     UNSUPPORTED    # x[(y, z)] (tests comma expression) (ditto)    # cast expr    # stack data        gdb_collect_expression_test globals_test_func \	    "globalstruct.memberi"  "82"     "a.b"    gdb_collect_expression_test globals_test_func \	    "globalp->memberc"      "81 'Q'" "a->b"    gdb_collect_expression_test globals_test_func \	    "globalarr\[2\]"        "2"      "a\[2\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[l3\]"       "3"      "a\[b\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[l3 + l2\]"  "5"      "a\[b + c\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[l3 - l2\]"  "1"      "a\[b - c\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[l3 * l2\]"  "6"      "a\[b * c\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[l6 / l3\]"  "2"      "a\[b / c\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[l7 % l3\]"  "1"      "a\[b % c\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[+l1\]"      "1"      "a\[+b\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[-lminus\]"  "2"      "a\[-b\]"    gdb_collect_expression_test globals_test_func \	    "globalarr\[\(l6, l7\)\]" "7"    "a\[\(b, c\)\]"}# Start with a fresh gdb. gdb_exitgdb_startgdb_reinitialize_dir $srcdir/$subdirgdb_load $binfile if [target_info exists gdb_stub] {    gdb_step_for_stub;} # Body of test encased in a proc so we can return prematurely.gdb_trace_collection_test# Finished!gdb_test "tfind none" "" ""

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -