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

Side by Side Diff: testing/libfuzzer/getting_started.md

Issue 1976713002: [libfuzzer] updating documentation with mac support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « testing/libfuzzer/README.md ('k') | testing/libfuzzer/reference.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Getting Started with libFuzzer in Chrome 1 # Getting Started with libFuzzer in Chrome
2 2
3 *** note 3 *** note
4 **Prerequisites:** libFuzzer in Chrome is supported with GN on Linux only. 4 **Prerequisites:** libFuzzer in Chrome is supported with GN on Linux only.
5 *** 5 ***
6 6
7 This document will walk you through: 7 This document will walk you through:
8 8
9 * setting up your build enviroment. 9 * setting up your build enviroment.
10 * creating your first fuzzer. 10 * creating your first fuzzer.
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 UBSAN_OPTIONS=halt_on_error=1 ./fuzzer <corpus_directory_or_single_testcase_path > 122 UBSAN_OPTIONS=halt_on_error=1 ./fuzzer <corpus_directory_or_single_testcase_path >
123 ``` 123 ```
124 124
125 Other useful options (used by ClusterFuzz) are: 125 Other useful options (used by ClusterFuzz) are:
126 ```bash 126 ```bash
127 UBSAN_OPTIONS=symbolize=1:halt_on_error=1:print_stacktrace=1 ./fuzzer <corpus_di rectory_or_single_testcase_path> 127 UBSAN_OPTIONS=symbolize=1:halt_on_error=1:print_stacktrace=1 ./fuzzer <corpus_di rectory_or_single_testcase_path>
128 ``` 128 ```
129 129
130 130
131 [Address Sanitizer]: http://clang.llvm.org/docs/AddressSanitizer.html 131 [Address Sanitizer]: http://clang.llvm.org/docs/AddressSanitizer.html
132 [Memory Sanitizer]: http://clang.llvm.org/docs/MemorySanitizer.html
133 [Undefined Behavior Sanitizer]: http://clang.llvm.org/docs/UndefinedBehaviorSani tizer.html
132 [ClusterFuzz status]: clusterfuzz.md#Status-Links 134 [ClusterFuzz status]: clusterfuzz.md#Status-Links
133 [crbug/598448]: https://bugs.chromium.org/p/chromium/issues/detail?id=598448 135 [crbug/598448]: https://bugs.chromium.org/p/chromium/issues/detail?id=598448
134 [Efficient Fuzzer Guide]: efficient_fuzzer.md 136 [Efficient Fuzzer Guide]: efficient_fuzzer.md
135 [Maximum Testcase Length]: efficient_fuzzer.md#Maximum-Testcase-Length 137 [Maximum Testcase Length]: efficient_fuzzer.md#Maximum-Testcase-Length
136 [Memory Sanitizer]: http://clang.llvm.org/docs/MemorySanitizer.html
137 [Undefined Behavior Sanitizer]: http://clang.llvm.org/docs/UndefinedBehaviorSani tizer.html
138 [url_parse_fuzzer.cc]: https://code.google.com/p/chromium/codesearch#chromium/sr c/testing/libfuzzer/fuzzers/url_parse_fuzzer.cc 138 [url_parse_fuzzer.cc]: https://code.google.com/p/chromium/codesearch#chromium/sr c/testing/libfuzzer/fuzzers/url_parse_fuzzer.cc
OLDNEW
« no previous file with comments | « testing/libfuzzer/README.md ('k') | testing/libfuzzer/reference.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698