Add translations for various sub-directories
[binutils-gdb.git] / gdb / testsuite / gdb.reverse / pipe-reverse.exp
blobccf54816a01b328d3ed6ebe10b3a0d67a84bea19
1 # Copyright 2015-2024 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 # This file is part of the gdb testsuite.
19 # This test tests pipe syscall for reverse execution.
22 require supports_reverse
24 standard_testfile
26 if { [prepare_for_testing "failed to prepare" $testfile $srcfile] } {
27     return -1
30 runto_main
32 if [supports_process_record] {
33     # Activate process record/replay
34     gdb_test_no_output "record" "turn on process record"
37 gdb_test "break marker2" \
38     "Breakpoint $decimal at $hex: file .*$srcfile, line $decimal.*" \
39     "set breakpoint at marker2"
41 gdb_continue_to_breakpoint "marker2" ".*$srcfile:.*"
43 gdb_test "break marker1" \
44     "Breakpoint $decimal at $hex: file .*$srcfile, line $decimal.*" \
45     "set breakpoint at marker1"
47 gdb_test "reverse-continue" ".*$srcfile:$decimal.*" "reverse to marker1"
49 # If the variables were recorded properly on syscall, the old contents (-1)
50 # will be remembered.  If not, new contents (the file fds from pipe) will be
51 # used, and the test will fail.
53 gdb_test "print fds" ".* = {-1, -1}" "check pipe record"