summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-12 12:41:06 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-13 23:32:05 +0300
commit9142c447e82c002a68fbf333f97508dba0e0e50c (patch)
treef46406466fee4b9af54449d2d77bda26b2999c3b /test
parentb9be5fd768f04756c976b21d2b09454caa57e848 (diff)
downloadqtlocation-mapboxgl-9142c447e82c002a68fbf333f97508dba0e0e50c.tar.gz
[tidy] Check llvm-namespace-comment
Ref: http://clang.llvm.org/extra/clang-tidy/checks/llvm-namespace-comment.html
Diffstat (limited to 'test')
-rw-r--r--test/include/mbgl/test.hpp2
-rw-r--r--test/src/mbgl/test/test.cpp2
-rw-r--r--test/src/mbgl/test/util.hpp4
-rw-r--r--test/storage/offline_database.cpp2
4 files changed, 5 insertions, 5 deletions
diff --git a/test/include/mbgl/test.hpp b/test/include/mbgl/test.hpp
index e398174ef7..ad5b868f30 100644
--- a/test/include/mbgl/test.hpp
+++ b/test/include/mbgl/test.hpp
@@ -4,4 +4,4 @@ namespace mbgl {
int runTests(int argc, char* argv[]);
-}
+} // namespace mbgl
diff --git a/test/src/mbgl/test/test.cpp b/test/src/mbgl/test/test.cpp
index 39afcc97e4..4c3dad1727 100644
--- a/test/src/mbgl/test/test.cpp
+++ b/test/src/mbgl/test/test.cpp
@@ -14,4 +14,4 @@ int runTests(int argc, char *argv[]) {
return RUN_ALL_TESTS();
}
-}
+} // namespace mbgl
diff --git a/test/src/mbgl/test/util.hpp b/test/src/mbgl/test/util.hpp
index 76c00d8434..30108a8866 100644
--- a/test/src/mbgl/test/util.hpp
+++ b/test/src/mbgl/test/util.hpp
@@ -73,5 +73,5 @@ void checkImage(const std::string& base,
double imageThreshold = 0,
double pixelThreshold = 0);
-}
-}
+} // namespace test
+} // namespace mbgl
diff --git a/test/storage/offline_database.cpp b/test/storage/offline_database.cpp
index 327dd924b2..6a3262abf6 100644
--- a/test/storage/offline_database.cpp
+++ b/test/storage/offline_database.cpp
@@ -78,7 +78,7 @@ private:
bool locked = false;
};
-}
+} // namespace
TEST(OfflineDatabase, TEST_REQUIRES_WRITE(Create)) {
using namespace mbgl;