summaryrefslogtreecommitdiff
path: root/libunwindstack/tests/MemoryFileTest.cpp
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2017-07-15 16:49:27 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-07-15 16:49:27 +0000
commitca94f65ea03c49b45d7516375bc322b84b55dcd3 (patch)
tree86c87add4f75184fcf6d023f941f47fa079b20e3 /libunwindstack/tests/MemoryFileTest.cpp
parent5be05733c2cba89471f8b7c7e22094f96da5dcf1 (diff)
parentd226a5140989f509a0ed3e2723f05d5fc93ce8df (diff)
Merge "Make the library usable as a library."
Diffstat (limited to 'libunwindstack/tests/MemoryFileTest.cpp')
-rw-r--r--libunwindstack/tests/MemoryFileTest.cpp6
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