gdb/testsuite: fix gdb.trace/signal.exp on x86
[binutils-gdb/blckswan.git] / gdb / unittests / scoped_mmap-selftests.c
blobc5b2768072f8353ea2fd6a4ff9dc490dae5aaecb
1 /* Self tests for scoped_mmap for GDB, the GNU debugger.
3 Copyright (C) 2018-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
22 #include "gdbsupport/filestuff.h"
23 #include "gdbsupport/scoped_mmap.h"
24 #include "config.h"
26 #if defined(HAVE_SYS_MMAN_H)
28 #include "gdbsupport/selftest.h"
29 #include "gdbsupport/gdb_unlinker.h"
31 #include <unistd.h>
33 namespace selftests {
34 namespace scoped_mmap {
36 /* Test that the file is unmapped. */
37 static void
38 test_destroy ()
40 void *mem;
42 errno = 0;
44 ::scoped_mmap smmap (nullptr, sysconf (_SC_PAGESIZE), PROT_WRITE,
45 MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
47 mem = smmap.get ();
48 SELF_CHECK (mem != nullptr);
51 SELF_CHECK (msync (mem, sysconf (_SC_PAGESIZE), 0) == -1 && errno == ENOMEM);
54 /* Test that the memory can be released. */
55 static void
56 test_release ()
58 void *mem;
60 errno = 0;
62 ::scoped_mmap smmap (nullptr, sysconf (_SC_PAGESIZE), PROT_WRITE,
63 MAP_ANONYMOUS | MAP_PRIVATE, 0, 0);
65 mem = smmap.release ();
66 SELF_CHECK (mem != nullptr);
69 SELF_CHECK (msync (mem, sysconf (_SC_PAGESIZE), 0) == 0 || errno != ENOMEM);
71 munmap (mem, sysconf (_SC_PAGESIZE));
74 /* Run selftests. */
75 static void
76 run_tests ()
78 test_destroy ();
79 test_release ();
82 } /* namespace scoped_mmap */
84 namespace mmap_file
87 /* Test the standard usage of mmap_file. */
88 static void
89 test_normal ()
91 char filename[] = "scoped_mmapped_file-selftest-XXXXXX";
93 scoped_fd fd = gdb_mkostemp_cloexec (filename);
94 SELF_CHECK (fd.get () >= 0);
96 SELF_CHECK (write (fd.get (), "Hello!", 7) == 7);
99 gdb::unlinker unlink_test_file (filename);
102 ::scoped_mmap m = ::mmap_file (filename);
104 SELF_CHECK (m.get () != MAP_FAILED);
105 SELF_CHECK (m.size () == 7);
106 SELF_CHECK (0 == strcmp ((char *) m.get (), "Hello!"));
110 /* Calling mmap_file with a non-existent file should throw an exception. */
111 static void
112 test_invalid_filename ()
114 bool threw = false;
116 try {
117 ::scoped_mmap m = ::mmap_file ("/this/file/should/not/exist");
118 } catch (gdb_exception &e) {
119 threw = true;
122 SELF_CHECK (threw);
126 /* Run selftests. */
127 static void
128 run_tests ()
130 test_normal ();
131 test_invalid_filename ();
134 } /* namespace mmap_file */
135 } /* namespace selftests */
137 #endif /* !defined(HAVE_SYS_MMAN_H) */
139 void _initialize_scoped_mmap_selftests ();
140 void
141 _initialize_scoped_mmap_selftests ()
143 #if defined(HAVE_SYS_MMAN_H)
144 selftests::register_test ("scoped_mmap",
145 selftests::scoped_mmap::run_tests);
146 selftests::register_test ("mmap_file",
147 selftests::mmap_file::run_tests);
148 #endif