summaryrefslogtreecommitdiff
path: root/src/ToolBox/SOS/tests
diff options
context:
space:
mode:
authorWes Haggard <weshaggard@users.noreply.github.com>2018-03-30 11:59:39 -0700
committerGitHub <noreply@github.com>2018-03-30 11:59:39 -0700
commitf5720eea7e7ada0bc0f6ba05a3825c73871a8b81 (patch)
treea43d3016ce6dbe8024d171bd4dd9b9a90c3684c9 /src/ToolBox/SOS/tests
parentd845ef1c33f0283d18541714ad9469a7b1a559e6 (diff)
parent3365ac5efe5d6a7ea965ed1d17a5dd5474a033a5 (diff)
downloadcoreclr-f5720eea7e7ada0bc0f6ba05a3825c73871a8b81.tar.gz
coreclr-f5720eea7e7ada0bc0f6ba05a3825c73871a8b81.tar.bz2
coreclr-f5720eea7e7ada0bc0f6ba05a3825c73871a8b81.zip
Merge pull request #17347 from weshaggard/MergeMaster21
[release/2.1] Merge master to release/2.1
Diffstat (limited to 'src/ToolBox/SOS/tests')
-rw-r--r--src/ToolBox/SOS/tests/Test.cs4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_bpmd_clear.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_bpmd_clearall.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_bpmd_methoddesc.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_bpmd_module_function.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_bpmd_module_function_iloffset.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_bpmd_nofuturemodule_module_function.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_clrstack.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_clrthreads.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_clru.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dso.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpclass.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpheap.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpil.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumplog.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpmd.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpmodule.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpmt.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpobj.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_dumpstack.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_eeheap.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_eestack.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_gcroot.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_histclear.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_histinit.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_histobj.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_histobjfind.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_histroot.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_ip2md.py4
-rw-r--r--src/ToolBox/SOS/tests/t_cmd_name2ee.py4
-rw-r--r--src/ToolBox/SOS/tests/test_libsosplugin.py4
-rw-r--r--src/ToolBox/SOS/tests/testutils.py4
32 files changed, 128 insertions, 0 deletions
diff --git a/src/ToolBox/SOS/tests/Test.cs b/src/ToolBox/SOS/tests/Test.cs
index e4ef76b30a..bd3829739f 100644
--- a/src/ToolBox/SOS/tests/Test.cs
+++ b/src/ToolBox/SOS/tests/Test.cs
@@ -1,3 +1,7 @@
+// 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;
class Test
diff --git a/src/ToolBox/SOS/tests/t_cmd_bpmd_clear.py b/src/ToolBox/SOS/tests/t_cmd_bpmd_clear.py
index 814d114d16..a1ed820cd1 100644
--- a/src/ToolBox/SOS/tests/t_cmd_bpmd_clear.py
+++ b/src/ToolBox/SOS/tests/t_cmd_bpmd_clear.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_bpmd_clearall.py b/src/ToolBox/SOS/tests/t_cmd_bpmd_clearall.py
index 8da9239f57..98d86df935 100644
--- a/src/ToolBox/SOS/tests/t_cmd_bpmd_clearall.py
+++ b/src/ToolBox/SOS/tests/t_cmd_bpmd_clearall.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_bpmd_methoddesc.py b/src/ToolBox/SOS/tests/t_cmd_bpmd_methoddesc.py
index dfd75432f3..a6a85f00d1 100644
--- a/src/ToolBox/SOS/tests/t_cmd_bpmd_methoddesc.py
+++ b/src/ToolBox/SOS/tests/t_cmd_bpmd_methoddesc.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function.py b/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function.py
index e407ab3e4e..f66fe5019f 100644
--- a/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function.py
+++ b/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function_iloffset.py b/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function_iloffset.py
index 91fb1cd125..1c4441f790 100644
--- a/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function_iloffset.py
+++ b/src/ToolBox/SOS/tests/t_cmd_bpmd_module_function_iloffset.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_bpmd_nofuturemodule_module_function.py b/src/ToolBox/SOS/tests/t_cmd_bpmd_nofuturemodule_module_function.py
index 64efad7b65..daeac12ca9 100644
--- a/src/ToolBox/SOS/tests/t_cmd_bpmd_nofuturemodule_module_function.py
+++ b/src/ToolBox/SOS/tests/t_cmd_bpmd_nofuturemodule_module_function.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_clrstack.py b/src/ToolBox/SOS/tests/t_cmd_clrstack.py
index 28a1a8b950..76bb5169ee 100644
--- a/src/ToolBox/SOS/tests/t_cmd_clrstack.py
+++ b/src/ToolBox/SOS/tests/t_cmd_clrstack.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_clrthreads.py b/src/ToolBox/SOS/tests/t_cmd_clrthreads.py
index ff731da990..5e374dd062 100644
--- a/src/ToolBox/SOS/tests/t_cmd_clrthreads.py
+++ b/src/ToolBox/SOS/tests/t_cmd_clrthreads.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_clru.py b/src/ToolBox/SOS/tests/t_cmd_clru.py
index 81a583e963..6f2971f613 100644
--- a/src/ToolBox/SOS/tests/t_cmd_clru.py
+++ b/src/ToolBox/SOS/tests/t_cmd_clru.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dso.py b/src/ToolBox/SOS/tests/t_cmd_dso.py
index 492204da5e..fc6761559f 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dso.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dso.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpclass.py b/src/ToolBox/SOS/tests/t_cmd_dumpclass.py
index 6a69070eb5..8026122d6f 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpclass.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpclass.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpheap.py b/src/ToolBox/SOS/tests/t_cmd_dumpheap.py
index 8546de79e1..0186435664 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpheap.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpheap.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpil.py b/src/ToolBox/SOS/tests/t_cmd_dumpil.py
index 295cf19e6f..1ddd482b00 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpil.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpil.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumplog.py b/src/ToolBox/SOS/tests/t_cmd_dumplog.py
index ab33b66d4b..631beb48ae 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumplog.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumplog.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpmd.py b/src/ToolBox/SOS/tests/t_cmd_dumpmd.py
index 0340eb5222..b2b020b4db 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpmd.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpmd.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpmodule.py b/src/ToolBox/SOS/tests/t_cmd_dumpmodule.py
index 2dd004818a..5f256b12fb 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpmodule.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpmodule.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpmt.py b/src/ToolBox/SOS/tests/t_cmd_dumpmt.py
index 059060b9b4..3640a4b55f 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpmt.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpmt.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpobj.py b/src/ToolBox/SOS/tests/t_cmd_dumpobj.py
index 93f32cd9ab..a6f2e3934c 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpobj.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpobj.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_dumpstack.py b/src/ToolBox/SOS/tests/t_cmd_dumpstack.py
index 3e15f8b1d9..24ae1a5bdb 100644
--- a/src/ToolBox/SOS/tests/t_cmd_dumpstack.py
+++ b/src/ToolBox/SOS/tests/t_cmd_dumpstack.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_eeheap.py b/src/ToolBox/SOS/tests/t_cmd_eeheap.py
index 50d8977422..8c9596467f 100644
--- a/src/ToolBox/SOS/tests/t_cmd_eeheap.py
+++ b/src/ToolBox/SOS/tests/t_cmd_eeheap.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_eestack.py b/src/ToolBox/SOS/tests/t_cmd_eestack.py
index bc36592f87..8764bccf44 100644
--- a/src/ToolBox/SOS/tests/t_cmd_eestack.py
+++ b/src/ToolBox/SOS/tests/t_cmd_eestack.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_gcroot.py b/src/ToolBox/SOS/tests/t_cmd_gcroot.py
index e6b727c9a1..636578d694 100644
--- a/src/ToolBox/SOS/tests/t_cmd_gcroot.py
+++ b/src/ToolBox/SOS/tests/t_cmd_gcroot.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_histclear.py b/src/ToolBox/SOS/tests/t_cmd_histclear.py
index db29bd85f7..b5206a7cd3 100644
--- a/src/ToolBox/SOS/tests/t_cmd_histclear.py
+++ b/src/ToolBox/SOS/tests/t_cmd_histclear.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_histinit.py b/src/ToolBox/SOS/tests/t_cmd_histinit.py
index 51191283c7..d0b2e89296 100644
--- a/src/ToolBox/SOS/tests/t_cmd_histinit.py
+++ b/src/ToolBox/SOS/tests/t_cmd_histinit.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_histobj.py b/src/ToolBox/SOS/tests/t_cmd_histobj.py
index c88bdac16e..402f04214c 100644
--- a/src/ToolBox/SOS/tests/t_cmd_histobj.py
+++ b/src/ToolBox/SOS/tests/t_cmd_histobj.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_histobjfind.py b/src/ToolBox/SOS/tests/t_cmd_histobjfind.py
index ffe5dbf52d..611639978d 100644
--- a/src/ToolBox/SOS/tests/t_cmd_histobjfind.py
+++ b/src/ToolBox/SOS/tests/t_cmd_histobjfind.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_histroot.py b/src/ToolBox/SOS/tests/t_cmd_histroot.py
index 7b73caafda..e212b1f089 100644
--- a/src/ToolBox/SOS/tests/t_cmd_histroot.py
+++ b/src/ToolBox/SOS/tests/t_cmd_histroot.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_ip2md.py b/src/ToolBox/SOS/tests/t_cmd_ip2md.py
index 1384c38f0c..78bebe95ff 100644
--- a/src/ToolBox/SOS/tests/t_cmd_ip2md.py
+++ b/src/ToolBox/SOS/tests/t_cmd_ip2md.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/t_cmd_name2ee.py b/src/ToolBox/SOS/tests/t_cmd_name2ee.py
index b617020e36..71d4212519 100644
--- a/src/ToolBox/SOS/tests/t_cmd_name2ee.py
+++ b/src/ToolBox/SOS/tests/t_cmd_name2ee.py
@@ -1,3 +1,7 @@
+# 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.
+
import lldb
import re
import testutils as test
diff --git a/src/ToolBox/SOS/tests/test_libsosplugin.py b/src/ToolBox/SOS/tests/test_libsosplugin.py
index e5a5906264..e7bab14538 100644
--- a/src/ToolBox/SOS/tests/test_libsosplugin.py
+++ b/src/ToolBox/SOS/tests/test_libsosplugin.py
@@ -1,3 +1,7 @@
+# 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.
+
from __future__ import print_function
import unittest
import argparse
diff --git a/src/ToolBox/SOS/tests/testutils.py b/src/ToolBox/SOS/tests/testutils.py
index 1f784b48f6..80139aee4c 100644
--- a/src/ToolBox/SOS/tests/testutils.py
+++ b/src/ToolBox/SOS/tests/testutils.py
@@ -1,3 +1,7 @@
+# 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.
+
from __future__ import print_function
import lldb
import re