Skip to content

Commit

Permalink
Remove an old CoreFX exclusion file (dotnet/coreclr#25500)
Browse files Browse the repository at this point in the history
Plus, add comments to the new exclusion file

Commit migrated from dotnet/coreclr@2b4f159
  • Loading branch information
BruceForstall authored and jkotas committed Jun 29, 2019
1 parent 2d62c2c commit bdec71a
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 42 deletions.
22 changes: 22 additions & 0 deletions src/coreclr/tests/CoreFX/CoreFX.issues.rsp
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# This is a "response file" used to pass fine-grained test exclusions to the
# corefx xunit test wrapper scripts, RunTests.cmd or RunTests.sh. Lines here
# should be in a format that xunit understands. Lines beginning with '#' are
# comment lines and are ignored.
#
# The interesting xunit exclusion syntax is (extracted from help screen for
# "dotnet.exe xunit.console.dll -?"):
#
# -------------------------------------------------------------------------
# -nomethod "name" : do not run a given test method (can be fully specified or use a wildcard;
# : i.e., 'MyNamespace.MyClass.MyTestMethod' or '*.MyTestMethod')
# : if specified more than once, acts as an AND operation
# -noclass "name" : do not run any methods in a given test class (should be fully
# : specified; i.e., 'MyNamespace.MyClass')
# : if specified more than once, acts as an AND operation
# -nonamespace "name" : do not run any methods in a given namespace (i.e.,
# : 'MyNamespace.MySubNamespace')
# : if specified more than once, acts as an AND operation
# -------------------------------------------------------------------------
#
# Please list a GitHub issue for every exclusion.

-notrait category=OuterLoop
-notrait category=RequiresElevation

Expand Down
41 changes: 0 additions & 41 deletions src/coreclr/tests/scripts/run-corefx-tests-exclusions.txt

This file was deleted.

2 changes: 1 addition & 1 deletion src/coreclr/tests/scripts/run-corefx-tests.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ echo ^<test exclusion file^> -- Path to test exclusion file, e.g., C:\coreclr\te
echo ^<architecture^> -- Architecture to run, either ARM or ARM64. (We can't depend on PROCESSOR_ARCHITECTURE because
echo the batch script might be invoked with an ARM64 CMD but we need to run ARM.)
echo ^<exclusion rsp file^> -- Path to test exclusion response file, passed to RunTests.cmd and then xunit, e.g.,
echo C:\coreclr\tests\scripts\run-corefx-tests-exclusions.txt
echo C:\coreclr\tests\CoreFX\CoreFX.issues.rsp
echo.
echo The ^<test exclusion file^> is a file with a list of assemblies for which the
echo tests should not be run. This allows excluding failing tests by excluding the
Expand Down

0 comments on commit bdec71a

Please sign in to comment.