aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.arch/aarch64-brk-patterns.c
diff options
context:
space:
mode:
authorLuis Machado <luis.machado@linaro.org>2020-01-13 12:31:01 -0300
committerLuis Machado <luis.machado@linaro.org>2020-01-29 11:26:07 -0300
commitb62a802857adafecc64bc1de3efd1c2e59059af9 (patch)
tree2777ce98d765d2df4c2df8c91c87d5bd8b6d9098 /gdb/testsuite/gdb.arch/aarch64-brk-patterns.c
parent5133a31537c8f90f3b8b7172f385b3b2856d1566 (diff)
downloadgdb-b62a802857adafecc64bc1de3efd1c2e59059af9.zip
gdb-b62a802857adafecc64bc1de3efd1c2e59059af9.tar.gz
gdb-b62a802857adafecc64bc1de3efd1c2e59059af9.tar.bz2
Test handling of additional brk instruction patterns
New in v5: - Use gdb_test_name for gdb_test_multiple. - Use gdb_assert. - Verify count matches the expected sigtraps exactly. New in v4: - Fix formatting nit in gdb/testsuite/gdb.arch/aarch64-brk-patterns.c. New in v3: - Minor formatting and code cleanups. - Added count check to validate number of brk SIGTRAP's. - Moved count to SIGTRAP check conditional block. This test exercises the previous patch's code and makes sure GDB can properly get a SIGTRAP from various brk instruction patterns. GDB needs to be able to see the program exiting normally. If GDB doesn't support the additional brk instructions, we will see timeouts. We bail out with the first timeout since we won't be able to step through the program breakpoint anyway, so it is no use carrying on. gdb/testsuite/ChangeLog: 2020-01-29 Luis Machado <luis.machado@linaro.org> * gdb.arch/aarch64-brk-patterns.c: New source file. * gdb.arch/aarch64-brk-patterns.exp: New test.
Diffstat (limited to 'gdb/testsuite/gdb.arch/aarch64-brk-patterns.c')
-rw-r--r--gdb/testsuite/gdb.arch/aarch64-brk-patterns.c31
1 files changed, 31 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.arch/aarch64-brk-patterns.c b/gdb/testsuite/gdb.arch/aarch64-brk-patterns.c
new file mode 100644
index 0000000..920ba8e
--- /dev/null
+++ b/gdb/testsuite/gdb.arch/aarch64-brk-patterns.c
@@ -0,0 +1,31 @@
+/* This file is part of GDB, the GNU debugger.
+
+ Copyright 2020 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
+main (void)
+{
+ /* Dummy instruction just so GDB doesn't stop at the first breakpoint
+ instruction. */
+ __asm __volatile ("nop\n\t");
+
+ /* Multiple BRK instruction patterns. */
+ __asm __volatile ("brk %0\n\t" ::"n"(0x0));
+ __asm __volatile ("brk %0\n\t" ::"n"(0x900 + 0xf));
+ __asm __volatile ("brk %0\n\t" ::"n"(0xf000));
+
+ return 0;
+}