Index: llvm/trunk/lib/Fuzzer/test/BufferOverflowOnInput.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/BufferOverflowOnInput.cpp +++ llvm/trunk/lib/Fuzzer/test/BufferOverflowOnInput.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/CallerCalleeTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/CallerCalleeTest.cpp +++ llvm/trunk/lib/Fuzzer/test/CallerCalleeTest.cpp @@ -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 Index: llvm/trunk/lib/Fuzzer/test/CounterTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/CounterTest.cpp +++ llvm/trunk/lib/Fuzzer/test/CounterTest.cpp @@ -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 Index: llvm/trunk/lib/Fuzzer/test/CustomMutatorTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/CustomMutatorTest.cpp +++ llvm/trunk/lib/Fuzzer/test/CustomMutatorTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/FourIndependentBranchesTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/FourIndependentBranchesTest.cpp +++ llvm/trunk/lib/Fuzzer/test/FourIndependentBranchesTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/FullCoverageSetTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/FullCoverageSetTest.cpp +++ llvm/trunk/lib/Fuzzer/test/FullCoverageSetTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/FuzzerFnAdapterUnittest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/FuzzerFnAdapterUnittest.cpp +++ llvm/trunk/lib/Fuzzer/test/FuzzerFnAdapterUnittest.cpp @@ -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: llvm/trunk/lib/Fuzzer/test/FuzzerUnittest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/FuzzerUnittest.cpp +++ llvm/trunk/lib/Fuzzer/test/FuzzerUnittest.cpp @@ -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 Index: llvm/trunk/lib/Fuzzer/test/InitializeTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/InitializeTest.cpp +++ llvm/trunk/lib/Fuzzer/test/InitializeTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/LeakTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/LeakTest.cpp +++ llvm/trunk/lib/Fuzzer/test/LeakTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/LeakTimeoutTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/LeakTimeoutTest.cpp +++ llvm/trunk/lib/Fuzzer/test/LeakTimeoutTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/MemcmpTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/MemcmpTest.cpp +++ llvm/trunk/lib/Fuzzer/test/MemcmpTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/NthRunCrashTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/NthRunCrashTest.cpp +++ llvm/trunk/lib/Fuzzer/test/NthRunCrashTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/NullDerefTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/NullDerefTest.cpp +++ llvm/trunk/lib/Fuzzer/test/NullDerefTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/RepeatedMemcmp.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/RepeatedMemcmp.cpp +++ llvm/trunk/lib/Fuzzer/test/RepeatedMemcmp.cpp @@ -1,3 +1,6 @@ +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. + #include #include Index: llvm/trunk/lib/Fuzzer/test/SimpleCmpTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SimpleCmpTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SimpleCmpTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/SimpleDictionaryTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SimpleDictionaryTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SimpleDictionaryTest.cpp @@ -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: llvm/trunk/lib/Fuzzer/test/SimpleFnAdapterTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SimpleFnAdapterTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SimpleFnAdapterTest.cpp @@ -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: llvm/trunk/lib/Fuzzer/test/SimpleHashTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SimpleHashTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SimpleHashTest.cpp @@ -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: llvm/trunk/lib/Fuzzer/test/SimpleTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SimpleTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SimpleTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/SpamyTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SpamyTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SpamyTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/StrcmpTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/StrcmpTest.cpp +++ llvm/trunk/lib/Fuzzer/test/StrcmpTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/StrncmpTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/StrncmpTest.cpp +++ llvm/trunk/lib/Fuzzer/test/StrncmpTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/SwitchTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/SwitchTest.cpp +++ llvm/trunk/lib/Fuzzer/test/SwitchTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/ThreadedTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/ThreadedTest.cpp +++ llvm/trunk/lib/Fuzzer/test/ThreadedTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/TimeoutTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/TimeoutTest.cpp +++ llvm/trunk/lib/Fuzzer/test/TimeoutTest.cpp @@ -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 #include Index: llvm/trunk/lib/Fuzzer/test/UninstrumentedTest.cpp =================================================================== --- llvm/trunk/lib/Fuzzer/test/UninstrumentedTest.cpp +++ llvm/trunk/lib/Fuzzer/test/UninstrumentedTest.cpp @@ -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 #include