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

Unified Diff: test/fuzzer/fuzzer-support.h

Issue 1604203002: Add a library suitable for libfuzzer with a small unit test runner shell (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 11 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 | « test/fuzzer/fuzzer.status ('k') | test/fuzzer/fuzzer-support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/fuzzer/fuzzer-support.h
diff --git a/test/fuzzer/fuzzer-support.h b/test/fuzzer/fuzzer-support.h
new file mode 100644
index 0000000000000000000000000000000000000000..0241c53665d2532d6095eace598fe35da78b27da
--- /dev/null
+++ b/test/fuzzer/fuzzer-support.h
@@ -0,0 +1,37 @@
+// Copyright 2016 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef TEST_FUZZER_FUZZER_SUPPORT_H_
+#define TEST_FUZZER_FUZZER_SUPPORT_H_
+
+#include "include/v8.h"
+
+namespace v8_fuzzer {
+
+class FuzzerSupport {
+ public:
+ FuzzerSupport(int* argc, char*** argv);
+ ~FuzzerSupport();
+
+ static FuzzerSupport* Get();
+
+ v8::Isolate* GetIsolate();
+ v8::Local<v8::Context> GetContext();
+
+ private:
+ // Prevent copying. Not implemented.
+ FuzzerSupport(const FuzzerSupport&);
+ FuzzerSupport& operator=(const FuzzerSupport&);
+
+ class ArrayBufferAllocator;
+
+ v8::Platform* platform_;
+ ArrayBufferAllocator* allocator_;
+ v8::Isolate* isolate_;
+ v8::Global<v8::Context> context_;
+};
+
+} // namespace
+
+#endif // TEST_FUZZER_FUZZER_SUPPORT_H_
« no previous file with comments | « test/fuzzer/fuzzer.status ('k') | test/fuzzer/fuzzer-support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698