summaryrefslogtreecommitdiff
path: root/tests/src/GC/Performance
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2016-01-27 11:41:24 -0800
committerstephentoub <stoub@microsoft.com>2016-01-27 13:22:16 -0800
commit21f8416ad4204afc18ce315d99baa5f4ada28d9a (patch)
tree6767624f3ab0c185ad7ceec5d6e07c2784058ecf /tests/src/GC/Performance
parent98ab26be675b96668ecf2dfe8c38f58f57454f02 (diff)
downloadcoreclr-21f8416ad4204afc18ce315d99baa5f4ada28d9a.tar.gz
coreclr-21f8416ad4204afc18ce315d99baa5f4ada28d9a.tar.bz2
coreclr-21f8416ad4204afc18ce315d99baa5f4ada28d9a.zip
Update license headers
Diffstat (limited to 'tests/src/GC/Performance')
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/CircularBuffer.cs5
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/CondemnedReasonGroup.cs5
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/DictionaryExtensions.cs5
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/GCEvent.cs7
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/GCInfo.cs7
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/GCProcess.cs7
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/Builders/ThreadWorkSpan.cs7
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/CollectGCMetricsAttribute.cs5
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/GCMetricDiscoverer.cs7
-rw-r--r--tests/src/GC/Performance/Framework/Metrics/GCMetrics.cs7
-rw-r--r--tests/src/GC/Performance/Framework/PerfTests.cs5
-rw-r--r--tests/src/GC/Performance/Framework/ProcessFactory.cs5
-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
21 files changed, 70 insertions, 49 deletions
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/CircularBuffer.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/CircularBuffer.cs
index 67a9ff9eaa..d5e27d9cb0 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/CircularBuffer.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/CircularBuffer.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.Collections.Generic;
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/CondemnedReasonGroup.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/CondemnedReasonGroup.cs
index 8338da2ff1..7e31d0b9ee 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/CondemnedReasonGroup.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/CondemnedReasonGroup.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 GCPerfTestFramework.Metrics.Builders
{
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/DictionaryExtensions.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/DictionaryExtensions.cs
index 564227a748..2ed31adad8 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/DictionaryExtensions.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/DictionaryExtensions.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.Collections.Generic;
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/GCEvent.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/GCEvent.cs
index a7f0339e69..61ca074b3f 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/GCEvent.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/GCEvent.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.
#if WINDOWS
@@ -1442,4 +1443,4 @@ namespace GCPerfTestFramework.Metrics.Builders
}
}
-#endif \ No newline at end of file
+#endif
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/GCInfo.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/GCInfo.cs
index 6c95bd7933..13fd1733ea 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/GCInfo.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/GCInfo.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.
#if WINDOWS
@@ -39,4 +40,4 @@ namespace GCPerfTestFramework.Metrics.Builders
}
}
-#endif \ No newline at end of file
+#endif
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/GCProcess.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/GCProcess.cs
index d636527a90..29ed6803d6 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/GCProcess.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/GCProcess.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.
#if WINDOWS
@@ -1253,4 +1254,4 @@ namespace GCPerfTestFramework.Metrics.Builders
#endif
}
-#endif \ No newline at end of file
+#endif
diff --git a/tests/src/GC/Performance/Framework/Metrics/Builders/ThreadWorkSpan.cs b/tests/src/GC/Performance/Framework/Metrics/Builders/ThreadWorkSpan.cs
index 9e7079e2db..443641c0d2 100644
--- a/tests/src/GC/Performance/Framework/Metrics/Builders/ThreadWorkSpan.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/Builders/ThreadWorkSpan.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.
#if WINDOWS
@@ -57,4 +58,4 @@ namespace GCPerfTestFramework.Metrics.Builders
}
}
-#endif \ No newline at end of file
+#endif
diff --git a/tests/src/GC/Performance/Framework/Metrics/CollectGCMetricsAttribute.cs b/tests/src/GC/Performance/Framework/Metrics/CollectGCMetricsAttribute.cs
index 3cf04b2bbd..19b92f489b 100644
--- a/tests/src/GC/Performance/Framework/Metrics/CollectGCMetricsAttribute.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/CollectGCMetricsAttribute.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 Microsoft.Xunit.Performance.Sdk;
using System;
diff --git a/tests/src/GC/Performance/Framework/Metrics/GCMetricDiscoverer.cs b/tests/src/GC/Performance/Framework/Metrics/GCMetricDiscoverer.cs
index 560a42867e..0f4f7cdeac 100644
--- a/tests/src/GC/Performance/Framework/Metrics/GCMetricDiscoverer.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/GCMetricDiscoverer.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.
#if WINDOWS
@@ -231,4 +232,4 @@ namespace GCPerfTestFramework.Metrics
}
}
-#endif \ No newline at end of file
+#endif
diff --git a/tests/src/GC/Performance/Framework/Metrics/GCMetrics.cs b/tests/src/GC/Performance/Framework/Metrics/GCMetrics.cs
index fdaa916e18..d569f776a8 100644
--- a/tests/src/GC/Performance/Framework/Metrics/GCMetrics.cs
+++ b/tests/src/GC/Performance/Framework/Metrics/GCMetrics.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.
#if WINDOWS
@@ -408,4 +409,4 @@ namespace GCPerfTestFramework.Metrics
#endregion
}
-#endif \ No newline at end of file
+#endif
diff --git a/tests/src/GC/Performance/Framework/PerfTests.cs b/tests/src/GC/Performance/Framework/PerfTests.cs
index 40bd91b524..3693e0bdc3 100644
--- a/tests/src/GC/Performance/Framework/PerfTests.cs
+++ b/tests/src/GC/Performance/Framework/PerfTests.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 GCPerfTestFramework.Metrics;
using Microsoft.Xunit.Performance;
diff --git a/tests/src/GC/Performance/Framework/ProcessFactory.cs b/tests/src/GC/Performance/Framework/ProcessFactory.cs
index f4708e7062..206ef3bbe2 100644
--- a/tests/src/GC/Performance/Framework/ProcessFactory.cs
+++ b/tests/src/GC/Performance/Framework/ProcessFactory.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.Collections.Generic;
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