Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1998)

Unified Diff: base/tools_sanity_unittest.cc

Issue 1242008: Implement more sanity tests for Memcheck/Valgrind (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tools/valgrind/memcheck/suppressions.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/tools_sanity_unittest.cc
===================================================================
--- base/tools_sanity_unittest.cc (revision 42598)
+++ base/tools_sanity_unittest.cc (working copy)
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "base/dynamic_annotations.h"
#include "base/message_loop.h"
#include "base/thread.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -23,7 +24,7 @@
PlatformThread::Sleep(100);
}
private:
- bool* value_;
+ bool *value_;
};
}
@@ -34,6 +35,71 @@
leak[4] = 1; // Make sure the allocated memory is used.
}
+void ReadValueOutOfArrayBoundsLeft(char *ptr) {
+ LOG(INFO) << "Reading a byte out of bounds: " << ptr[-2];
+}
+
+void ReadValueOutOfArrayBoundsRight(char *ptr, size_t size) {
+ LOG(INFO) << "Reading a byte out of bounds: " << ptr[size + 1];
+}
+
+// This is harmless if you run it under Valgrind thanks to redzones.
+void WriteValueOutOfArrayBoundsLeft(char *ptr) {
+ ptr[-1] = 42;
+}
+
+// This is harmless if you run it under Valgrind thanks to redzones.
+void WriteValueOutOfArrayBoundsRight(char *ptr, size_t size) {
+ ptr[size] = 42;
+}
+
+void MakeSomeErrors(char *ptr, size_t size) {
+ ReadValueOutOfArrayBoundsLeft(ptr);
+ ReadValueOutOfArrayBoundsRight(ptr, size);
+ WriteValueOutOfArrayBoundsLeft(ptr);
+ WriteValueOutOfArrayBoundsRight(ptr, size);
+}
+
+TEST(ToolsSanityTest, AccessesToNewMemory) {
+ // This test may corrupt memory if not run under Valgrind.
+ if (!RunningOnValgrind())
+ return;
+
+ char *foo = new char[10];
+ MakeSomeErrors(foo, 10);
+ delete [] foo;
+ foo[5] = 0; // Use after delete. This won't break anything under Valgrind.
+}
+
+TEST(ToolsSanityTest, AccessesToMallocMemory) {
+ // This test may corrupt memory if not run under Valgrind.
+ if (!RunningOnValgrind())
+ return;
+
+ char *foo = reinterpret_cast<char*>(malloc(10));
+ MakeSomeErrors(foo, 10);
+ free(foo);
+ foo[5] = 0; // Use after free. This won't break anything under Valgrind.
+}
+
+TEST(ToolsSanityTest, ArrayDeletedWithoutBraces) {
+ // This test may corrupt memory if not run under Valgrind.
+ if (!RunningOnValgrind())
+ return;
+
+ int *foo = new int[10];
+ delete foo;
+}
+
+TEST(ToolsSanityTest, SingleElementDeletedWithBraces) {
+ // This test may corrupt memory if not run under Valgrind.
+ if (!RunningOnValgrind())
+ return;
+
+ int *foo = new int;
+ delete [] foo;
+}
+
// A data race detector should report an error in this test.
TEST(ToolsSanityTest, DataRace) {
bool shared = false;
« no previous file with comments | « no previous file | tools/valgrind/memcheck/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698