diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/libcxx/compiler.py | 9 | ||||
-rw-r--r-- | test/libcxx/test/config.py | 11 | ||||
-rw-r--r-- | test/libcxx/test/executor.py | 9 | ||||
-rw-r--r-- | test/libcxx/test/format.py | 9 | ||||
-rw-r--r-- | test/libcxx/test/target_info.py | 9 | ||||
-rw-r--r-- | test/libcxx/test/tracing.py | 9 | ||||
-rw-r--r-- | test/libcxx/util.py | 9 | ||||
-rw-r--r-- | test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_helpers.h | 9 | ||||
-rw-r--r-- | test/std/utilities/function.objects/func.require/invoke_helpers.h | 9 | ||||
-rw-r--r-- | test/std/utilities/function.objects/func.wrap/func.wrap.func/function_types.h | 9 | ||||
-rw-r--r-- | test/support/any_helpers.h | 8 | ||||
-rw-r--r-- | test/support/cmpxchg_loop.h | 9 | ||||
-rw-r--r-- | test/support/count_new.hpp | 9 | ||||
-rw-r--r-- | test/support/disable_missing_braces_warning.h | 8 | ||||
-rw-r--r-- | test/support/nasty_macros.hpp | 8 | ||||
-rw-r--r-- | test/support/tracked_value.h | 8 | ||||
-rw-r--r-- | test/support/user_defined_integral.hpp | 8 |
17 files changed, 149 insertions, 1 deletions
diff --git a/test/libcxx/compiler.py b/test/libcxx/compiler.py index 4962038cbbed..7dfb13abbd41 100644 --- a/test/libcxx/compiler.py +++ b/test/libcxx/compiler.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===## +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===## + import os import lit.util import libcxx.util diff --git a/test/libcxx/test/config.py b/test/libcxx/test/config.py index 5ab7fcb37401..f8096ad15f8a 100644 --- a/test/libcxx/test/config.py +++ b/test/libcxx/test/config.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===## +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===## + import locale import os import platform @@ -606,7 +615,7 @@ class Configuration(object): for k, v in self.env.items(): exec_env_str += ' %s=%s' % (k, v) # Configure run env substitution. - exec_str = '' + exec_str = exec_env_str if self.lit_config.useValgrind: exec_str = ' '.join(self.lit_config.valgrindArgs) + exec_env_str sub.append(('%exec', exec_str)) diff --git a/test/libcxx/test/executor.py b/test/libcxx/test/executor.py index f0356ceca784..ee4288fb0083 100644 --- a/test/libcxx/test/executor.py +++ b/test/libcxx/test/executor.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===## +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===## + import os from libcxx.test import tracing diff --git a/test/libcxx/test/format.py b/test/libcxx/test/format.py index 19c9fc742a49..ca934a4b395f 100644 --- a/test/libcxx/test/format.py +++ b/test/libcxx/test/format.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===## +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===## + import errno import os import time diff --git a/test/libcxx/test/target_info.py b/test/libcxx/test/target_info.py index df216fcb21fa..7ca08bea193a 100644 --- a/test/libcxx/test/target_info.py +++ b/test/libcxx/test/target_info.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===// +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===// + import importlib import lit.util # pylint: disable=import-error,no-name-in-module import locale diff --git a/test/libcxx/test/tracing.py b/test/libcxx/test/tracing.py index 766fc192f9f5..c590ba3efd01 100644 --- a/test/libcxx/test/tracing.py +++ b/test/libcxx/test/tracing.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===## +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===## + import os import inspect diff --git a/test/libcxx/util.py b/test/libcxx/util.py index 28f2619d69cb..8899ffaa4b26 100644 --- a/test/libcxx/util.py +++ b/test/libcxx/util.py @@ -1,3 +1,12 @@ +#===----------------------------------------------------------------------===## +# +# The LLVM Compiler Infrastructure +# +# This file is dual licensed under the MIT and the University of Illinois Open +# Source Licenses. See LICENSE.TXT for details. +# +#===----------------------------------------------------------------------===## + from contextlib import contextmanager import os import tempfile diff --git a/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_helpers.h b/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_helpers.h index e31420b156c6..6cbc0c35c0f5 100644 --- a/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_helpers.h +++ b/test/std/atomics/atomics.types.operations/atomics.types.operations.req/atomic_helpers.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + #ifndef ATOMIC_HELPERS_H #define ATOMIC_HELPERS_H diff --git a/test/std/utilities/function.objects/func.require/invoke_helpers.h b/test/std/utilities/function.objects/func.require/invoke_helpers.h index 0583b624da31..a85b39f37175 100644 --- a/test/std/utilities/function.objects/func.require/invoke_helpers.h +++ b/test/std/utilities/function.objects/func.require/invoke_helpers.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + #ifndef INVOKE_HELPERS_H #define INVOKE_HELPERS_H diff --git a/test/std/utilities/function.objects/func.wrap/func.wrap.func/function_types.h b/test/std/utilities/function.objects/func.wrap/func.wrap.func/function_types.h index 55eb80f43ffe..f1526544bcfe 100644 --- a/test/std/utilities/function.objects/func.wrap/func.wrap.func/function_types.h +++ b/test/std/utilities/function.objects/func.wrap/func.wrap.func/function_types.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + #ifndef FUNCTION_TYPES_H #define FUNCTION_TYPES_H diff --git a/test/support/any_helpers.h b/test/support/any_helpers.h index 76b1922fb1f1..bb1ad175c1f2 100644 --- a/test/support/any_helpers.h +++ b/test/support/any_helpers.h @@ -1,3 +1,11 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// #ifndef ANY_HELPERS_H #define ANY_HELPERS_H diff --git a/test/support/cmpxchg_loop.h b/test/support/cmpxchg_loop.h index c39e3fb12f67..5bec51b63321 100644 --- a/test/support/cmpxchg_loop.h +++ b/test/support/cmpxchg_loop.h @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + #include <atomic> template <class A, class T> diff --git a/test/support/count_new.hpp b/test/support/count_new.hpp index 57aca7def335..e8968a93de98 100644 --- a/test/support/count_new.hpp +++ b/test/support/count_new.hpp @@ -1,3 +1,12 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + #ifndef COUNT_NEW_HPP #define COUNT_NEW_HPP diff --git a/test/support/disable_missing_braces_warning.h b/test/support/disable_missing_braces_warning.h index 967a87ab3a2e..97fd8a89a51a 100644 --- a/test/support/disable_missing_braces_warning.h +++ b/test/support/disable_missing_braces_warning.h @@ -1,3 +1,11 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// #ifndef SUPPORT_DISABLE_MISSING_BRACES_WARNING_H #define SUPPORT_DISABLE_MISSING_BRACES_WARNING_H diff --git a/test/support/nasty_macros.hpp b/test/support/nasty_macros.hpp index 2738e47eac9f..074853ea0b8a 100644 --- a/test/support/nasty_macros.hpp +++ b/test/support/nasty_macros.hpp @@ -1,3 +1,11 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// #ifndef SUPPORT_NASTY_MACROS_HPP #define SUPPORT_NASTY_MACROS_HPP diff --git a/test/support/tracked_value.h b/test/support/tracked_value.h index b0869b23bdcb..14d96b88368e 100644 --- a/test/support/tracked_value.h +++ b/test/support/tracked_value.h @@ -1,3 +1,11 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// #ifndef SUPPORT_TRACKED_VALUE_H #define SUPPORT_TRACKED_VALUE_H diff --git a/test/support/user_defined_integral.hpp b/test/support/user_defined_integral.hpp index 3b0f7a19fcf4..383b65f72e3f 100644 --- a/test/support/user_defined_integral.hpp +++ b/test/support/user_defined_integral.hpp @@ -1,3 +1,11 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// #ifndef SUPPORT_USER_DEFINED_INTEGRAL_HPP #define SUPPORT_USER_DEFINED_INTEGRAL_HPP |