1 //===-- sanitizer_procmaps_test.cc ----------------------------------------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file is a part of ThreadSanitizer/AddressSanitizer runtime.
12 //===----------------------------------------------------------------------===//
13 #include "sanitizer_common/sanitizer_procmaps.h"
14 #include "gtest/gtest.h"
19 extern const char *argv0
;
21 namespace __sanitizer
{
23 #if SANITIZER_LINUX && !SANITIZER_ANDROID
24 TEST(MemoryMappingLayout
, CodeRange
) {
26 bool res
= GetCodeRangeForFile("[vdso]", &start
, &end
);
29 EXPECT_LT(start
, end
);
33 TEST(MemoryMappingLayout
, DumpListOfModules
) {
34 const char *last_slash
= strrchr(argv0
, '/');
35 const char *binary_name
= last_slash
? last_slash
+ 1 : argv0
;
36 MemoryMappingLayout
memory_mapping(false);
37 const uptr kMaxModules
= 100;
38 LoadedModule
*modules
=
39 (LoadedModule
*)malloc(kMaxModules
* sizeof(LoadedModule
));
40 uptr n_modules
= memory_mapping
.DumpListOfModules(modules
, kMaxModules
, 0);
41 EXPECT_GT(n_modules
, 0U);
43 for (uptr i
= 0; i
< n_modules
; ++i
) {
44 if (modules
[i
].containsAddress((uptr
)&noop
)) {
45 // Verify that the module name is sane.
46 if (strstr(modules
[i
].full_name(), binary_name
) != 0)
54 } // namespace __sanitizer