aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2010-04-15 17:45:57 +0000
committerDoug Evans <dje@google.com>2010-04-15 17:45:57 +0000
commit3f7b2faa4bb3f35f6c88687b6943cdbe6003b615 (patch)
tree8bf0af678389bf6da72d8bc3def978e10ca77485 /gdb/testsuite
parent75375b3e00c282a6461d1a3df83582f624b18377 (diff)
downloadgdb-3f7b2faa4bb3f35f6c88687b6943cdbe6003b615.zip
gdb-3f7b2faa4bb3f35f6c88687b6943cdbe6003b615.tar.gz
gdb-3f7b2faa4bb3f35f6c88687b6943cdbe6003b615.tar.bz2
Add -s option to source command.
* NEWS: Document new option. * cli/cli-cmds.c (find_and_open_script): Add function comment. Delete from_tty and cleanupp args. Split filep arg into file and full_pathp. New arg search_path. (source_script_from_stream): New function. (source_script_with_search): New function. (source_script): Rewrite. (source_command): Parse "-s" option. (init_cli_cmds): Add "-s" docs to source command help, and reformat. * python/python.c (source_python_script): Make file arg a const char *. Don't call fclose, leave for caller. * python/python.h (source_python_script): Update. testsuite/ * gdb.base/source-test.gdb: New file. * gdb.base/source.exp: Add tests for "source -s". doc/ * gdb.texinfo (Command Files): Add docs for new "source -s" option.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.base/source.exp13
2 files changed, 18 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 2d1918e..9b870b5 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2010-04-15 Doug Evans <dje@google.com>
+
+ * gdb.base/source-test.gdb: New file.
+ * gdb.base/source.exp: Add tests for "source -s".
+
2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
* gdb.python/py-prettyprint.py (NoStringContainerPrinter): New printer.
diff --git a/gdb/testsuite/gdb.base/source.exp b/gdb/testsuite/gdb.base/source.exp
index ccb17ee..2de6f04 100644
--- a/gdb/testsuite/gdb.base/source.exp
+++ b/gdb/testsuite/gdb.base/source.exp
@@ -51,4 +51,17 @@ gdb_test_multiple "source ${srcdir}/${subdir}/source-test.gdb" $test {
}
}
+gdb_test "dir ${srcdir}/${subdir}" ""
+gdb_test "source -s ./source-test.gdb" \
+ "test source options" \
+ "source -s"
+
+# Test -v and -s in either order.
+gdb_test "source -s -v ./source-test.gdb" \
+ "echo test source options.*" \
+ "source -s -v"
+gdb_test "source -v -s ./source-test.gdb" \
+ "echo test source options.*" \
+ "source -v -s"
+
gdb_exit