summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/ctxobj-m.c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2012-05-10 16:24:58 +0000
committerJoel Brobecker <brobecker@gnat.com>2012-05-10 16:24:58 +0000
commitafba63f1097f74fae4a47fdb02d640b61f13f4ae (patch)
treeaa15b019eede838a4c50947ed1a776b6ef2a4c61 /gdb/testsuite/gdb.base/ctxobj-m.c
parent99a547d6792f51503719e01937129b94597c5a67 (diff)
New testcase: gdb.base/ctxobj.exp
gdb/testsuite/ChangeLog: * gdb.base/ctxobj-f.c, gdb.base/ctxobj-m.c, gdb.base/ctxobj-v.c, gdb.base/ctxobj.exp: New files.
Diffstat (limited to 'gdb/testsuite/gdb.base/ctxobj-m.c')
-rw-r--r--gdb/testsuite/gdb.base/ctxobj-m.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/ctxobj-m.c b/gdb/testsuite/gdb.base/ctxobj-m.c
new file mode 100644
index 0000000000..203f838073
--- /dev/null
+++ b/gdb/testsuite/gdb.base/ctxobj-m.c
@@ -0,0 +1,31 @@
+/* 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/>. */
+
+extern int get_version_1 (void);
+extern int get_version_2 (void);
+
+int
+main (void)
+{
+ if (get_version_1 () != 104)
+ return 1;
+
+ if (get_version_2 () != 203)
+ return 2;
+
+ return 0;
+}
+