diff options
author | Mircea Gherzan <mgherzan@sourceware.org> | 2012-12-12 21:25:09 +0000 |
---|---|---|
committer | Mircea Gherzan <mgherzan@sourceware.org> | 2012-12-12 21:25:09 +0000 |
commit | ca3dbcc867db23528da2f61e82d720c547159fed (patch) | |
tree | afbfc75f9f394dd3290ad67c7a8a3182ff37d2d3 /gdb/testsuite/gdb.mi/mi-catch-load.c | |
parent | 3fa7bf069226d867d6400552c55d5a838a5f0f20 (diff) | |
download | gdb-ca3dbcc867db23528da2f61e82d720c547159fed.zip gdb-ca3dbcc867db23528da2f61e82d720c547159fed.tar.gz gdb-ca3dbcc867db23528da2f61e82d720c547159fed.tar.bz2 |
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.c')
-rw-r--r-- | gdb/testsuite/gdb.mi/mi-catch-load.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.mi/mi-catch-load.c b/gdb/testsuite/gdb.mi/mi-catch-load.c new file mode 100644 index 0000000..0035c88 --- /dev/null +++ b/gdb/testsuite/gdb.mi/mi-catch-load.c @@ -0,0 +1,33 @@ +/* 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/>. */ + +#include <dlfcn.h> +#include <stdio.h> + +char *libname = "mi-catch-load-so.so"; + +int +main () +{ + void *h; + + h = dlopen (libname, RTLD_LAZY); + + dlclose (h); + + return 0; +} |