diff options
Diffstat (limited to 'gdb/testsuite/gdb.python/py-section-script.exp')
-rw-r--r-- | gdb/testsuite/gdb.python/py-section-script.exp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.python/py-section-script.exp b/gdb/testsuite/gdb.python/py-section-script.exp index 81762ba..31fdcf8 100644 --- a/gdb/testsuite/gdb.python/py-section-script.exp +++ b/gdb/testsuite/gdb.python/py-section-script.exp @@ -55,6 +55,14 @@ set remote_python_file [remote_download host ${srcdir}/${subdir}/${testfile}.py] gdb_reinitialize_dir $srcdir/$subdir gdb_load ${binfile} +# Verify gdb loaded the script. +gdb_test "info auto-load-scripts" "Yes.*${testfile}.py.*full name: .*/${testfile}.py.*" +# Again, with a regexp this time. +gdb_test "info auto-load-scripts ${testfile}" "Yes.*${testfile}.py.*full name: .*/${testfile}.py.*" +# Again, with a regexp that matches no scripts. +gdb_test "info auto-load-scripts no-script-matches-this" \ + "No auto-load scripts matching no-script-matches-this." + if ![runto_main] { perror "couldn't run to main" return |