Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/tests
diff options
context:
space:
mode:
authorViktor Hofer <viktor.hofer@microsoft.com>2021-03-10 16:14:17 +0300
committerGitHub <noreply@github.com>2021-03-10 16:14:17 +0300
commitcaac609099c0dda7725bd6a54a32fb95b504796f (patch)
treeb7a86ff19ccfaea5368840dcfd3b6815810a30fb /src/tests
parent423f5e1eb186b90d99002ff35725ece8cbfff30c (diff)
jitutils M2M renaming reaction (#49430)
* jitutils M2M renaming reaction * Update format.py
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/Common/scripts/format.py2
-rwxr-xr-xsrc/tests/Common/scripts/run-pmi-diffs.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/Common/scripts/format.py b/src/tests/Common/scripts/format.py
index 47089497631..1ba1ecc7ce6 100644
--- a/src/tests/Common/scripts/format.py
+++ b/src/tests/Common/scripts/format.py
@@ -118,7 +118,7 @@ def main(argv):
elif platform == 'windows':
bootstrapFilename = "bootstrap.cmd"
- bootstrapUrl = "https://raw.githubusercontent.com/dotnet/jitutils/master/" + bootstrapFilename
+ bootstrapUrl = "https://raw.githubusercontent.com/dotnet/jitutils/main/" + bootstrapFilename
with TempDir() as temp_location:
bootstrapPath = os.path.join(temp_location, bootstrapFilename)
diff --git a/src/tests/Common/scripts/run-pmi-diffs.py b/src/tests/Common/scripts/run-pmi-diffs.py
index a4f1d3ecde7..106137eaeae 100755
--- a/src/tests/Common/scripts/run-pmi-diffs.py
+++ b/src/tests/Common/scripts/run-pmi-diffs.py
@@ -502,7 +502,7 @@ def do_pmi_diffs():
# Clone jitutils
- command = 'git clone -b master --single-branch %s %s' % (Jitutils_url, jitutilsPath)
+ command = 'git clone -b main --single-branch %s %s' % (Jitutils_url, jitutilsPath)
log(command)
returncode = 0 if testing else os.system(command)
if returncode != 0: