summaryrefslogtreecommitdiff
path: root/tests/runtest.py
diff options
context:
space:
mode:
authorEgor Chesakov <Egor.Chesakov@microsoft.com>2018-11-13 14:37:04 -0800
committerGitHub <noreply@github.com>2018-11-13 14:37:04 -0800
commit124a8b9438ddb12514b5f28dc8001b8d23abb18f (patch)
tree59eede114706df889dd402cb1bdb1e72486f6dea /tests/runtest.py
parent56a2ffdc9413eb01c678eb215543bb2432f36fa4 (diff)
downloadcoreclr-124a8b9438ddb12514b5f28dc8001b8d23abb18f.tar.gz
coreclr-124a8b9438ddb12514b5f28dc8001b8d23abb18f.tar.bz2
coreclr-124a8b9438ddb12514b5f28dc8001b8d23abb18f.zip
Specify version of xunit.console.dll during the custom build (#20975)
* Use stable Xunit v2.4.1 * Use xunit.console.dll with specified assembly version to avoid issues with Ready2Run jobs * Update comment regarding building xunit with specified version in tests/runtest.py
Diffstat (limited to 'tests/runtest.py')
-rwxr-xr-xtests/runtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/runtest.py b/tests/runtest.py
index d1b4683b0f..f847b2cdb8 100755
--- a/tests/runtest.py
+++ b/tests/runtest.py
@@ -791,7 +791,7 @@ def run_tests(host_os,
# 1) git clone https://github.com/echesakovMSFT/xunit.git --branch UseConcurrentDictionaryInDependencyContextAssemblyCache --single-branch
# 2) cd xunit
# 3) git submodule update --init
- # 4) powershell .\build.ps1
+ # 4) powershell .\build.ps1 -target packages -buildAssemblyVersion 2.4.1 -buildSemanticVersion 2.4.1-coreclr
#
# Then file "xunit\src\xunit.console\bin\Release\netcoreapp2.0\xunit.console.dll" was archived and uploaded to the clrjit blob storage.
#
@@ -809,7 +809,7 @@ def run_tests(host_os,
urlretrieve = urllib.urlretrieve if sys.version_info.major < 3 else urllib.request.urlretrieve
zipfilename = os.path.join(tempfile.gettempdir(), "xunit.console.dll.zip")
- url = r"https://clrjit.blob.core.windows.net/xunit-console/xunit.console.dll.zip"
+ url = r"https://clrjit.blob.core.windows.net/xunit-console/xunit.console.dll-v2.4.1.zip"
urlretrieve(url, zipfilename)
with zipfile.ZipFile(zipfilename,"r") as ziparch: