OSDN Git Service

[libfuzzer] adding license headers to cpp files
authorMike Aizatsky <aizatsky@chromium.org>
Fri, 1 Apr 2016 18:38:58 +0000 (18:38 +0000)
committerMike Aizatsky <aizatsky@chromium.org>
Fri, 1 Apr 2016 18:38:58 +0000 (18:38 +0000)
Differential Revision: http://reviews.llvm.org/D18705

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265174 91177308-0d34-0410-b5e6-96231b3b80d8

27 files changed:
lib/Fuzzer/test/BufferOverflowOnInput.cpp
lib/Fuzzer/test/CallerCalleeTest.cpp
lib/Fuzzer/test/CounterTest.cpp
lib/Fuzzer/test/CustomMutatorTest.cpp
lib/Fuzzer/test/FourIndependentBranchesTest.cpp
lib/Fuzzer/test/FullCoverageSetTest.cpp
lib/Fuzzer/test/FuzzerFnAdapterUnittest.cpp
lib/Fuzzer/test/FuzzerUnittest.cpp
lib/Fuzzer/test/InitializeTest.cpp
lib/Fuzzer/test/LeakTest.cpp
lib/Fuzzer/test/LeakTimeoutTest.cpp
lib/Fuzzer/test/MemcmpTest.cpp
lib/Fuzzer/test/NthRunCrashTest.cpp
lib/Fuzzer/test/NullDerefTest.cpp
lib/Fuzzer/test/RepeatedMemcmp.cpp
lib/Fuzzer/test/SimpleCmpTest.cpp
lib/Fuzzer/test/SimpleDictionaryTest.cpp
lib/Fuzzer/test/SimpleFnAdapterTest.cpp
lib/Fuzzer/test/SimpleHashTest.cpp
lib/Fuzzer/test/SimpleTest.cpp
lib/Fuzzer/test/SpamyTest.cpp
lib/Fuzzer/test/StrcmpTest.cpp
lib/Fuzzer/test/StrncmpTest.cpp
lib/Fuzzer/test/SwitchTest.cpp
lib/Fuzzer/test/ThreadedTest.cpp
lib/Fuzzer/test/TimeoutTest.cpp
lib/Fuzzer/test/UninstrumentedTest.cpp

index 9bebd84..b9d1405 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
 #include <assert.h>
 #include <cstdint>
index 150b2fc..3ec025d 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer.
 // Try to find the target using the indirect caller-callee pairs.
 #include <cstdint>
index b61f419..4917934 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Test for a fuzzer: must find the case where a particular basic block is
 // executed many times.
 #include <iostream>
index ef4851e..0e76eaf 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a cutom mutator.
 #include <assert.h>
 #include <cstdint>
index 6007dd4..62b3be7 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the string "FUZZ".
 #include <cstdint>
 #include <cstdlib>
index a868084..415e0b4 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the string "FUZZER".
 #include <cstdint>
 #include <cstdlib>
index a8b5a14..11be180 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 #include "FuzzerFnAdapter.h"
 #include "gtest/gtest-spi.h"
 #include "gtest/gtest.h"
index 06ab510..7b49f2f 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 #include "FuzzerInternal.h"
 #include "gtest/gtest.h"
 #include <set>
index 1462747..d40ff2f 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Make sure LLVMFuzzerInitialize is called.
 #include <assert.h>
 #include <stddef.h>
index 7d153e4..69ff10b 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Test with a leak.
 #include <cstdint>
 #include <cstddef>
index 3aa56c4..4f31b3e 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Test with a leak.
 #include <cstdint>
 #include <cstddef>
index c72f2c2..fdbf946 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find a particular string.
 #include <cstring>
 #include <cstdint>
index 03d03d0..b43e69e 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Crash on the N-th execution.
 #include <cstdint>
 #include <cstddef>
index 200c56c..3f03d24 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
 #include <cstdint>
 #include <cstdlib>
index cb5e130..a327bbe 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 
 #include <cstring>
 #include <cstdint>
index 8568c73..54dc016 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find several narrow ranges.
 #include <cstdint>
 #include <cstdlib>
index b9cb2f0..cd7292b 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer.
 // The fuzzer must find a string based on dictionary words:
 //   "Elvis"
index f9432ef..d30c98b 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer Fn adapter. The fuzzer has to find two non-empty
 // vectors with the same content.
 
index 5bab3fa..00599de 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // This test computes a checksum of the data (all but the last 4 bytes),
 // and then compares the last 4 bytes with the computed value.
 // A fuzzer with cmp traces is expected to defeat this check.
index 04225a8..e53ea16 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
 #include <assert.h>
 #include <cstdint>
index 63776d6..d294d4d 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // The test spams to stderr and stdout.
 #include <assert.h>
 #include <cstdint>
index 835819a..5a13299 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Break through a series of strcmp.
 #include <cstring>
 #include <cstdint>
index 55344d7..8575c26 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find a particular string.
 #include <cstring>
 #include <cstdint>
index 5de7fff..3dc051f 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the interesting switch value.
 #include <cstdint>
 #include <cstdlib>
index 7aa114a..09137a9 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Threaded test for a fuzzer. The fuzzer should not crash.
 #include <assert.h>
 #include <cstdint>
index 71790de..f810701 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // Simple test for a fuzzer. The fuzzer must find the string "Hi!".
 #include <cstdint>
 #include <cstdlib>
index c173019..ffe952c 100644 (file)
@@ -1,3 +1,6 @@
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+
 // This test should not be instrumented.
 #include <cstdint>
 #include <cstddef>