diff options
author | Christopher Ferris <cferris@google.com> | 2017-07-15 16:49:27 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2017-07-15 16:49:27 +0000 |
commit | ca94f65ea03c49b45d7516375bc322b84b55dcd3 (patch) | |
tree | 86c87add4f75184fcf6d023f941f47fa079b20e3 /libunwindstack/tests/MemoryFileTest.cpp | |
parent | 5be05733c2cba89471f8b7c7e22094f96da5dcf1 (diff) | |
parent | d226a5140989f509a0ed3e2723f05d5fc93ce8df (diff) |
Merge "Make the library usable as a library."
Diffstat (limited to 'libunwindstack/tests/MemoryFileTest.cpp')
-rw-r--r-- | libunwindstack/tests/MemoryFileTest.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libunwindstack/tests/MemoryFileTest.cpp b/libunwindstack/tests/MemoryFileTest.cpp index aa7a23a34..a204baec1 100644 --- a/libunwindstack/tests/MemoryFileTest.cpp +++ b/libunwindstack/tests/MemoryFileTest.cpp @@ -21,7 +21,9 @@ #include <android-base/file.h> #include <gtest/gtest.h> -#include "Memory.h" +#include <unwindstack/Memory.h> + +namespace unwindstack { class MemoryFileTest : public ::testing::Test { protected: @@ -269,3 +271,5 @@ TEST_F(MemoryFileTest, init_reinit) { ASSERT_EQ(2, read_buffer[i]) << "Failed at byte " << i; } } + +} // namespace unwindstack |