summaryrefslogtreecommitdiff
path: root/tests/src/GC/Performance/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/GC/Performance/Tests')
-rw-r--r--tests/src/GC/Performance/Tests/Allocation.cs5
-rw-r--r--tests/src/GC/Performance/Tests/ConcurrentSpin.cs5
-rw-r--r--tests/src/GC/Performance/Tests/EEGC.cs5
-rw-r--r--tests/src/GC/Performance/Tests/GCSimulator.cs5
-rw-r--r--tests/src/GC/Performance/Tests/LargeStrings.cs5
-rw-r--r--tests/src/GC/Performance/Tests/MidLife.cs5
-rw-r--r--tests/src/GC/Performance/Tests/Node.cs7
-rw-r--r--tests/src/GC/Performance/Tests/SleepThread.cs5
-rw-r--r--tests/src/GC/Performance/Tests/lifetimefx.cs5
9 files changed, 28 insertions, 19 deletions
diff --git a/tests/src/GC/Performance/Tests/Allocation.cs b/tests/src/GC/Performance/Tests/Allocation.cs
index 8d36d4efc0..064f73c4d3 100644
--- a/tests/src/GC/Performance/Tests/Allocation.cs
+++ b/tests/src/GC/Performance/Tests/Allocation.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
diff --git a/tests/src/GC/Performance/Tests/ConcurrentSpin.cs b/tests/src/GC/Performance/Tests/ConcurrentSpin.cs
index 3f77224cef..63b8a0fa3d 100644
--- a/tests/src/GC/Performance/Tests/ConcurrentSpin.cs
+++ b/tests/src/GC/Performance/Tests/ConcurrentSpin.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Threading;
diff --git a/tests/src/GC/Performance/Tests/EEGC.cs b/tests/src/GC/Performance/Tests/EEGC.cs
index 3bbfe9d8a0..61c855bc29 100644
--- a/tests/src/GC/Performance/Tests/EEGC.cs
+++ b/tests/src/GC/Performance/Tests/EEGC.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
namespace EEGC
{
diff --git a/tests/src/GC/Performance/Tests/GCSimulator.cs b/tests/src/GC/Performance/Tests/GCSimulator.cs
index 5433dbcc22..ce7836a41c 100644
--- a/tests/src/GC/Performance/Tests/GCSimulator.cs
+++ b/tests/src/GC/Performance/Tests/GCSimulator.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Threading;
diff --git a/tests/src/GC/Performance/Tests/LargeStrings.cs b/tests/src/GC/Performance/Tests/LargeStrings.cs
index 50d4282ab1..f17603c29f 100644
--- a/tests/src/GC/Performance/Tests/LargeStrings.cs
+++ b/tests/src/GC/Performance/Tests/LargeStrings.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Text;
diff --git a/tests/src/GC/Performance/Tests/MidLife.cs b/tests/src/GC/Performance/Tests/MidLife.cs
index 68b4707a27..11116f614e 100644
--- a/tests/src/GC/Performance/Tests/MidLife.cs
+++ b/tests/src/GC/Performance/Tests/MidLife.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
using System;
using System.Text;
diff --git a/tests/src/GC/Performance/Tests/Node.cs b/tests/src/GC/Performance/Tests/Node.cs
index 361207cebc..ea8532ea0a 100644
--- a/tests/src/GC/Performance/Tests/Node.cs
+++ b/tests/src/GC/Performance/Tests/Node.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
namespace EEGC
{
@@ -8,4 +9,4 @@ namespace EEGC
public Node left;
public Node right;
}
-} \ No newline at end of file
+}
diff --git a/tests/src/GC/Performance/Tests/SleepThread.cs b/tests/src/GC/Performance/Tests/SleepThread.cs
index e58ab9bd2b..689ef82cdc 100644
--- a/tests/src/GC/Performance/Tests/SleepThread.cs
+++ b/tests/src/GC/Performance/Tests/SleepThread.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
namespace EEGC{
using System;
diff --git a/tests/src/GC/Performance/Tests/lifetimefx.cs b/tests/src/GC/Performance/Tests/lifetimefx.cs
index ac530a1966..5356b6cf08 100644
--- a/tests/src/GC/Performance/Tests/lifetimefx.cs
+++ b/tests/src/GC/Performance/Tests/lifetimefx.cs
@@ -1,5 +1,6 @@
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
/*
* A Simple Framework to manage the life time of of objects