summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.mi/mi-catch-load-so.c
diff options
context:
space:
mode:
authorMircea Gherzan <mgherzan@sourceware.org>2012-12-12 21:25:09 +0000
committerMircea Gherzan <mgherzan@sourceware.org>2012-12-12 21:25:09 +0000
commitca3dbcc867db23528da2f61e82d720c547159fed (patch)
treeafbfc75f9f394dd3290ad67c7a8a3182ff37d2d3 /gdb/testsuite/gdb.mi/mi-catch-load-so.c
parent3fa7bf069226d867d6400552c55d5a838a5f0f20 (diff)
downloadbinutils-gdb-ca3dbcc867db23528da2f61e82d720c547159fed.tar.gz
MI: tests for -catch-load/-catch-unload
Added basic MI tests for the -catch-load and -catch-unload MI commands. 2012-11-19 Keven Boell <keven.boell@intel.com> gdb/testsuite: * gdb.mi/mi-catch-load-so.c: New. Clone of the catch load test library source file. * gdb.mi/mi-catch-load.c: New. Clone of the catch load test source file. * gdb.mi/mi-catch-load.exp: New. Test file for basic MI -catch-load and -catch-unload tests.
Diffstat (limited to 'gdb/testsuite/gdb.mi/mi-catch-load-so.c')
-rw-r--r--gdb/testsuite/gdb.mi/mi-catch-load-so.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.mi/mi-catch-load-so.c b/gdb/testsuite/gdb.mi/mi-catch-load-so.c
new file mode 100644
index 00000000000..8c3d0d622e8
--- /dev/null
+++ b/gdb/testsuite/gdb.mi/mi-catch-load-so.c
@@ -0,0 +1,22 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+ Copyright 2012 Free Software Foundation, Inc.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+int
+f (void)
+{
+ return 23;
+}