Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c56ce54

Browse files
committed
Address PR Feedback
1 parent f16e13d commit c56ce54

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

tests/runtest.proj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,7 @@ namespace $([System.String]::Copy($(Category)).Replace(".","_").Replace("\","").
422422
<HostFxrFileExtension Condition="'$(OSGroup)' == 'Linux' Or '$(OSGroup)' == 'FreeBSD'">so</HostFxrFileExtension>
423423
<HostFxrFileExtension Condition="$(OSGroup) =='OSX'">dylib</HostFxrFileExtension>
424424
<HostPolicyFileName>libhostpolicy</HostPolicyFileName>
425-
<HostPolicyExtension Condition="'$(OSGroup)' == 'Linux' Or '$(OSGroup)' == 'FreeBSD'">so</HostPolicyExtension>
426-
<HostPolicyExtension Condition="$(OSGroup) =='OSX'">dylib</HostPolicyExtension>
425+
<HostPolicyExtension>$(HostFxrFileExtension)</HostPolicyExtension>
427426
<DotnetExecutableName>dotnet</DotnetExecutableName>
428427
</PropertyGroup>
429428

tests/runtest.sh

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function print_usage {
7070
echo 'CoreFX Test Options '
7171
echo ' --corefxtests : Runs CoreFX tests'
7272
echo ' --corefxtestsall : Runs all available CoreFX tests'
73-
echo ' --corefxtestlist : Runs the CoreFX tests specified in the passed list'
73+
echo ' --corefxtestlist=<path> : Runs the CoreFX tests specified in the passed list'
7474
echo ' --testHostDir=<path> : Directory containing a built test host including core binaries, test dependencies'
7575
echo ' and a dotnet executable'
7676
echo 'Runtime Code Coverage options:'
@@ -468,11 +468,6 @@ function create_testhost
468468
fi
469469

470470
case "${OSName}" in
471-
# Check if we're running under Linux
472-
Linux)
473-
local coreFXTestRemoteURL=$(<${coreClrSrcTestDir}/CoreFX/CoreFXTestListURL_Linux.txt)
474-
local coreFXTestExclusionDef=nonlinuxtests
475-
;;
476471
# Check if we're running under OSX
477472
Darwin)
478473
local coreFXTestRemoteURL=$(<${coreClrSrcTestDir}/CoreFX/CoreFXTestListURL_OSX.txt)

0 commit comments

Comments
 (0)