aboutsummaryrefslogtreecommitdiff
path: root/pstl/test
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2019-01-19 10:56:40 +0000
committerChandler Carruth <chandlerc@gmail.com>2019-01-19 10:56:40 +0000
commit57b08b0944046a6a57ee9b7b479181f548a5b9b4 (patch)
tree0d51ea759cc0389d1718d13deac10f9f6318ba9c /pstl/test
parent8805f67da99a25e1f1e4ce929978433b8d6cba07 (diff)
downloadllvm-57b08b0944046a6a57ee9b7b479181f548a5b9b4.zip
llvm-57b08b0944046a6a57ee9b7b479181f548a5b9b4.tar.gz
llvm-57b08b0944046a6a57ee9b7b479181f548a5b9b4.tar.bz2
Update more file headers across all of the LLVM projects in the monorepo
to reflect the new license. These used slightly different spellings that defeated my regular expressions. We understand that people may be surprised that we're moving the header entirely to discuss the new license. We checked this carefully with the Foundation's lawyer and we believe this is the correct approach. Essentially, all code in the project is now made available by the LLVM project under our new license, so you will see that the license headers include that license only. Some of our contributors have contributed code under our old license, and accordingly, we have retained a copy of our old license notice in the top-level files in each project and repository. llvm-svn: 351648
Diffstat (limited to 'pstl/test')
-rw-r--r--pstl/test/CMakeLists.txt7
-rw-r--r--pstl/test/pstl_test_config.h7
-rw-r--r--pstl/test/test_adjacent_difference.cpp7
-rw-r--r--pstl/test/test_adjacent_find.cpp7
-rw-r--r--pstl/test/test_all_of.cpp7
-rw-r--r--pstl/test/test_any_of.cpp7
-rw-r--r--pstl/test/test_copy_if.cpp7
-rw-r--r--pstl/test/test_copy_move.cpp7
-rw-r--r--pstl/test/test_count.cpp7
-rw-r--r--pstl/test/test_equal.cpp7
-rw-r--r--pstl/test/test_fill.cpp7
-rw-r--r--pstl/test/test_find.cpp7
-rw-r--r--pstl/test/test_find_end.cpp7
-rw-r--r--pstl/test/test_find_first_of.cpp7
-rw-r--r--pstl/test/test_find_if.cpp7
-rw-r--r--pstl/test/test_for_each.cpp7
-rw-r--r--pstl/test/test_generate.cpp7
-rw-r--r--pstl/test/test_includes.cpp7
-rw-r--r--pstl/test/test_inplace_merge.cpp7
-rw-r--r--pstl/test/test_is_heap.cpp7
-rw-r--r--pstl/test/test_is_partitioned.cpp7
-rw-r--r--pstl/test/test_is_sorted.cpp7
-rw-r--r--pstl/test/test_lexicographical_compare.cpp7
-rw-r--r--pstl/test/test_merge.cpp7
-rw-r--r--pstl/test/test_minmax_element.cpp7
-rw-r--r--pstl/test/test_mismatch.cpp7
-rw-r--r--pstl/test/test_none_of.cpp7
-rw-r--r--pstl/test/test_nth_element.cpp7
-rw-r--r--pstl/test/test_partial_sort.cpp7
-rw-r--r--pstl/test/test_partial_sort_copy.cpp7
-rw-r--r--pstl/test/test_partition.cpp7
-rw-r--r--pstl/test/test_partition_copy.cpp7
-rw-r--r--pstl/test/test_reduce.cpp7
-rw-r--r--pstl/test/test_remove.cpp7
-rw-r--r--pstl/test/test_remove_copy.cpp7
-rw-r--r--pstl/test/test_replace.cpp7
-rw-r--r--pstl/test/test_replace_copy.cpp7
-rw-r--r--pstl/test/test_reverse.cpp7
-rw-r--r--pstl/test/test_reverse_copy.cpp7
-rw-r--r--pstl/test/test_rotate.cpp7
-rw-r--r--pstl/test/test_rotate_copy.cpp7
-rw-r--r--pstl/test/test_scan.cpp7
-rw-r--r--pstl/test/test_search_n.cpp7
-rw-r--r--pstl/test/test_set.cpp7
-rw-r--r--pstl/test/test_sort.cpp7
-rw-r--r--pstl/test/test_swap_ranges.cpp7
-rw-r--r--pstl/test/test_transform_binary.cpp7
-rw-r--r--pstl/test/test_transform_reduce.cpp7
-rw-r--r--pstl/test/test_transform_scan.cpp7
-rw-r--r--pstl/test/test_transform_unary.cpp7
-rw-r--r--pstl/test/test_uninitialized_construct.cpp7
-rw-r--r--pstl/test/test_uninitialized_copy_move.cpp7
-rw-r--r--pstl/test/test_uninitialized_fill_destroy.cpp7
-rw-r--r--pstl/test/test_unique.cpp7
-rw-r--r--pstl/test/test_unique_copy_equal.cpp7
-rw-r--r--pstl/test/utils.h7
56 files changed, 168 insertions, 224 deletions
diff --git a/pstl/test/CMakeLists.txt b/pstl/test/CMakeLists.txt
index 58ec64a..1b8638a 100644
--- a/pstl/test/CMakeLists.txt
+++ b/pstl/test/CMakeLists.txt
@@ -1,9 +1,8 @@
#===-- CMakeLists.txt ----------------------------------------------------===##
#
-# 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.
+# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+# See https://llvm.org/LICENSE.txt for license information.
+# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
#===----------------------------------------------------------------------===##
diff --git a/pstl/test/pstl_test_config.h b/pstl/test/pstl_test_config.h
index 898d957..10b8724 100644
--- a/pstl/test/pstl_test_config.h
+++ b/pstl/test/pstl_test_config.h
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- pstl_test_config.h ------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_adjacent_difference.cpp b/pstl/test/test_adjacent_difference.cpp
index f2b8eccd..e95f9d1 100644
--- a/pstl/test/test_adjacent_difference.cpp
+++ b/pstl/test/test_adjacent_difference.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_adjacent_difference.cpp --------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_adjacent_find.cpp b/pstl/test/test_adjacent_find.cpp
index e1a20ce..3944014 100644
--- a/pstl/test/test_adjacent_find.cpp
+++ b/pstl/test/test_adjacent_find.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_adjacent_find.cpp --------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_all_of.cpp b/pstl/test/test_all_of.cpp
index 194fb62..1de6e03 100644
--- a/pstl/test/test_all_of.cpp
+++ b/pstl/test/test_all_of.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_all_of.cpp ---------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_any_of.cpp b/pstl/test/test_any_of.cpp
index 4fab6bf..0509078 100644
--- a/pstl/test/test_any_of.cpp
+++ b/pstl/test/test_any_of.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_any_of.cpp ---------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_copy_if.cpp b/pstl/test/test_copy_if.cpp
index 5096de0..dba6f23 100644
--- a/pstl/test/test_copy_if.cpp
+++ b/pstl/test/test_copy_if.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_copy_if.cpp --------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_copy_move.cpp b/pstl/test/test_copy_move.cpp
index 530bfe6..7fdf549 100644
--- a/pstl/test/test_copy_move.cpp
+++ b/pstl/test/test_copy_move.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_copy_move.cpp ------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_count.cpp b/pstl/test/test_count.cpp
index 2ab5ac9..c6a7d21 100644
--- a/pstl/test/test_count.cpp
+++ b/pstl/test/test_count.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_count.cpp ----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_equal.cpp b/pstl/test/test_equal.cpp
index 48a2f0d..5cb52ba3 100644
--- a/pstl/test/test_equal.cpp
+++ b/pstl/test/test_equal.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_equal.cpp ----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_fill.cpp b/pstl/test/test_fill.cpp
index 750367f..64f411b 100644
--- a/pstl/test/test_fill.cpp
+++ b/pstl/test/test_fill.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_fill.cpp -----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_find.cpp b/pstl/test/test_find.cpp
index ac18b3e..956b099 100644
--- a/pstl/test/test_find.cpp
+++ b/pstl/test/test_find.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_find.cpp -----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_find_end.cpp b/pstl/test/test_find_end.cpp
index 1b2ec8f..0a5a44b 100644
--- a/pstl/test/test_find_end.cpp
+++ b/pstl/test/test_find_end.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_find_end.cpp -------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_find_first_of.cpp b/pstl/test/test_find_first_of.cpp
index ac9160a..8cdb308 100644
--- a/pstl/test/test_find_first_of.cpp
+++ b/pstl/test/test_find_first_of.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_find_first_of.cpp --------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_find_if.cpp b/pstl/test/test_find_if.cpp
index 03b279c..914ebc2 100644
--- a/pstl/test/test_find_if.cpp
+++ b/pstl/test/test_find_if.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_find_if.cpp --------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_for_each.cpp b/pstl/test/test_for_each.cpp
index b306ad9..0d89cc2 100644
--- a/pstl/test/test_for_each.cpp
+++ b/pstl/test/test_for_each.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_for_each.cpp -------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_generate.cpp b/pstl/test/test_generate.cpp
index bc9c3b2..4a88ee9 100644
--- a/pstl/test/test_generate.cpp
+++ b/pstl/test/test_generate.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_generate.cpp -------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_includes.cpp b/pstl/test/test_includes.cpp
index 7f44166..53b8a60 100644
--- a/pstl/test/test_includes.cpp
+++ b/pstl/test/test_includes.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_includes.cpp -------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_inplace_merge.cpp b/pstl/test/test_inplace_merge.cpp
index b00488c..8bf79f5 100644
--- a/pstl/test/test_inplace_merge.cpp
+++ b/pstl/test/test_inplace_merge.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_inplace_merge.cpp --------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_is_heap.cpp b/pstl/test/test_is_heap.cpp
index 42751f2..dacdd87 100644
--- a/pstl/test/test_is_heap.cpp
+++ b/pstl/test/test_is_heap.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_is_heap.cpp --------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_is_partitioned.cpp b/pstl/test/test_is_partitioned.cpp
index 59ae8de..a80a331 100644
--- a/pstl/test/test_is_partitioned.cpp
+++ b/pstl/test/test_is_partitioned.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_is_partitioned.cpp -------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_is_sorted.cpp b/pstl/test/test_is_sorted.cpp
index d19ac0c..a2694584 100644
--- a/pstl/test/test_is_sorted.cpp
+++ b/pstl/test/test_is_sorted.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_is_sorted.cpp ------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_lexicographical_compare.cpp b/pstl/test/test_lexicographical_compare.cpp
index 5f173a8..3a98808 100644
--- a/pstl/test/test_lexicographical_compare.cpp
+++ b/pstl/test/test_lexicographical_compare.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_lexicographical_compare.cpp ----------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_merge.cpp b/pstl/test/test_merge.cpp
index dcb1946..6b2ed4b 100644
--- a/pstl/test/test_merge.cpp
+++ b/pstl/test/test_merge.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_merge.cpp ----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_minmax_element.cpp b/pstl/test/test_minmax_element.cpp
index d39f4fa..8b7cb51 100644
--- a/pstl/test/test_minmax_element.cpp
+++ b/pstl/test/test_minmax_element.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_minmax_element.cpp -------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_mismatch.cpp b/pstl/test/test_mismatch.cpp
index 299c242..5d5c9e8 100644
--- a/pstl/test/test_mismatch.cpp
+++ b/pstl/test/test_mismatch.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_mismatch.cpp -------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_none_of.cpp b/pstl/test/test_none_of.cpp
index 83b6abc..43f0da6 100644
--- a/pstl/test/test_none_of.cpp
+++ b/pstl/test/test_none_of.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_none_of.cpp --------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_nth_element.cpp b/pstl/test/test_nth_element.cpp
index 2ce60f1..eb7b726 100644
--- a/pstl/test/test_nth_element.cpp
+++ b/pstl/test/test_nth_element.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_nth_element.cpp ----------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_partial_sort.cpp b/pstl/test/test_partial_sort.cpp
index e28cb82..0d84712 100644
--- a/pstl/test/test_partial_sort.cpp
+++ b/pstl/test/test_partial_sort.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_partial_sort.cpp ---------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_partial_sort_copy.cpp b/pstl/test/test_partial_sort_copy.cpp
index c89498a..11d4721 100644
--- a/pstl/test/test_partial_sort_copy.cpp
+++ b/pstl/test/test_partial_sort_copy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_partial_sort_copy.cpp ----------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_partition.cpp b/pstl/test/test_partition.cpp
index 41c1463..ad5d992 100644
--- a/pstl/test/test_partition.cpp
+++ b/pstl/test/test_partition.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_partition.cpp ------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_partition_copy.cpp b/pstl/test/test_partition_copy.cpp
index dd0ec01..1635406 100644
--- a/pstl/test/test_partition_copy.cpp
+++ b/pstl/test/test_partition_copy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_partition_copy.cpp -------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_reduce.cpp b/pstl/test/test_reduce.cpp
index ca95ddb..ad8872a 100644
--- a/pstl/test/test_reduce.cpp
+++ b/pstl/test/test_reduce.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_reduce.cpp ---------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_remove.cpp b/pstl/test/test_remove.cpp
index 6f6e1c0..ee08df1 100644
--- a/pstl/test/test_remove.cpp
+++ b/pstl/test/test_remove.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_remove.cpp ---------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_remove_copy.cpp b/pstl/test/test_remove_copy.cpp
index defd834..2d62c1a 100644
--- a/pstl/test/test_remove_copy.cpp
+++ b/pstl/test/test_remove_copy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_remove_copy.cpp ----------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_replace.cpp b/pstl/test/test_replace.cpp
index 6c6e461..293de5a 100644
--- a/pstl/test/test_replace.cpp
+++ b/pstl/test/test_replace.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_replace.cpp --------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_replace_copy.cpp b/pstl/test/test_replace_copy.cpp
index 73aa8eb..1c89422 100644
--- a/pstl/test/test_replace_copy.cpp
+++ b/pstl/test/test_replace_copy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_replace_copy.cpp ---------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_reverse.cpp b/pstl/test/test_reverse.cpp
index 8521f0a..4842030 100644
--- a/pstl/test/test_reverse.cpp
+++ b/pstl/test/test_reverse.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_reverse.cpp --------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_reverse_copy.cpp b/pstl/test/test_reverse_copy.cpp
index b532dba6..1378a95 100644
--- a/pstl/test/test_reverse_copy.cpp
+++ b/pstl/test/test_reverse_copy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_reverse_copy.cpp ---------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_rotate.cpp b/pstl/test/test_rotate.cpp
index b94bb8e..5619bca 100644
--- a/pstl/test/test_rotate.cpp
+++ b/pstl/test/test_rotate.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_rotate.cpp ---------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_rotate_copy.cpp b/pstl/test/test_rotate_copy.cpp
index 1ca9f55..aa800d2 100644
--- a/pstl/test/test_rotate_copy.cpp
+++ b/pstl/test/test_rotate_copy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_rotate_copy.cpp ----------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_scan.cpp b/pstl/test/test_scan.cpp
index c776405..9193d93 100644
--- a/pstl/test/test_scan.cpp
+++ b/pstl/test/test_scan.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_scan.cpp -----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_search_n.cpp b/pstl/test/test_search_n.cpp
index 7f0fd0b..1603367 100644
--- a/pstl/test/test_search_n.cpp
+++ b/pstl/test/test_search_n.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_search_n.cpp -------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_set.cpp b/pstl/test/test_set.cpp
index 424f918..0e59ef2 100644
--- a/pstl/test/test_set.cpp
+++ b/pstl/test/test_set.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_set.cpp ------------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_sort.cpp b/pstl/test/test_sort.cpp
index 09051ec..17cae92 100644
--- a/pstl/test/test_sort.cpp
+++ b/pstl/test/test_sort.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_sort.cpp -----------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_swap_ranges.cpp b/pstl/test/test_swap_ranges.cpp
index d32aa3d..5be0614 100644
--- a/pstl/test/test_swap_ranges.cpp
+++ b/pstl/test/test_swap_ranges.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_swap_ranges.cpp ----------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_transform_binary.cpp b/pstl/test/test_transform_binary.cpp
index 5c0c7e9..4f5f4d2 100644
--- a/pstl/test/test_transform_binary.cpp
+++ b/pstl/test/test_transform_binary.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_transform_binary.cpp -----------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_transform_reduce.cpp b/pstl/test/test_transform_reduce.cpp
index 5b21836..a1ec7a3 100644
--- a/pstl/test/test_transform_reduce.cpp
+++ b/pstl/test/test_transform_reduce.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_transform_reduce.cpp -----------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_transform_scan.cpp b/pstl/test/test_transform_scan.cpp
index a568e92..0014437 100644
--- a/pstl/test/test_transform_scan.cpp
+++ b/pstl/test/test_transform_scan.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_transform_scan.cpp -------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_transform_unary.cpp b/pstl/test/test_transform_unary.cpp
index 8932fe6..0389aa6 100644
--- a/pstl/test/test_transform_unary.cpp
+++ b/pstl/test/test_transform_unary.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_transform_unary.cpp ------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_uninitialized_construct.cpp b/pstl/test/test_uninitialized_construct.cpp
index a3caa58..fa4bcbb 100644
--- a/pstl/test/test_uninitialized_construct.cpp
+++ b/pstl/test/test_uninitialized_construct.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_uninitialized_construct.cpp ----------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_uninitialized_copy_move.cpp b/pstl/test/test_uninitialized_copy_move.cpp
index b9893b0..4306511 100644
--- a/pstl/test/test_uninitialized_copy_move.cpp
+++ b/pstl/test/test_uninitialized_copy_move.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_uninitialized_copy_move.cpp ----------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_uninitialized_fill_destroy.cpp b/pstl/test/test_uninitialized_fill_destroy.cpp
index 47c8bf3..d1cfa10 100644
--- a/pstl/test/test_uninitialized_fill_destroy.cpp
+++ b/pstl/test/test_uninitialized_fill_destroy.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_uninitialized_fill_destroy.cpp -------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_unique.cpp b/pstl/test/test_unique.cpp
index 91bf71c..ee34ebd 100644
--- a/pstl/test/test_unique.cpp
+++ b/pstl/test/test_unique.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_unique.cpp ---------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/test_unique_copy_equal.cpp b/pstl/test/test_unique_copy_equal.cpp
index acfc511..392f8db 100644
--- a/pstl/test/test_unique_copy_equal.cpp
+++ b/pstl/test/test_unique_copy_equal.cpp
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- test_unique_copy_equal.cpp ----------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
diff --git a/pstl/test/utils.h b/pstl/test/utils.h
index f8a2fde..0c0cfa1 100644
--- a/pstl/test/utils.h
+++ b/pstl/test/utils.h
@@ -1,10 +1,9 @@
// -*- C++ -*-
//===-- utils.h -----------------------------------------------------------===//
//
-// 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.
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//