This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -384,6 +384,7 @@ usage()
384
384
echo " verbose - optional argument to enable verbose build output."
385
385
echo " rebuild - if tests have already been built - rebuild them"
386
386
echo " generatelayoutonly - only pull down dependencies and build coreroot"
387
+ echo " generatetesthostonly - only pull down dependencies and build coreroot and the CoreFX testhost"
387
388
echo " buildagainstpackages - pull down and build using packages."
388
389
echo " runtests - run tests after building them"
389
390
echo " ziptests - zips CoreCLR tests & Core_Root for a Helix run"
@@ -641,6 +642,10 @@ while :; do
641
642
__GenerateLayoutOnly=1
642
643
;;
643
644
645
+ generatetesthostonly)
646
+ exit 0
647
+ ;;
648
+
644
649
buildagainstpackages)
645
650
__BuildAgainstPackagesArg=1
646
651
;;
Original file line number Diff line number Diff line change @@ -67,6 +67,10 @@ function print_usage {
67
67
echo ' is zero when launching this script. This option is intended for use in CI.'
68
68
echo ' --xunitOutputPath=<path> : Create xUnit XML report at the specifed path (default: <test root>/coreclrtests.xml)'
69
69
echo ' '
70
+ echo ' CoreFX Test Options '
71
+ echo ' --corefxtests : Runs CoreFX tests'
72
+ echo ' --corefxtestsall : Runs all available CoreFX tests'
73
+ echo ' '
70
74
echo ' Runtime Code Coverage options:'
71
75
echo ' --coreclr-coverage : Optional argument to get coreclr code coverage reports'
72
76
echo ' --coreclr-objs=<path> : Location of root of the object directory'
@@ -1168,6 +1172,12 @@ do
1168
1172
--runcrossgentests)
1169
1173
export RunCrossGen=1
1170
1174
;;
1175
+ --corefxtests)
1176
+ exit 0
1177
+ ;;
1178
+ --corefxtestsall)
1179
+ exit 0
1180
+ ;;
1171
1181
--sequential)
1172
1182
(( maxProcesses = 1 ))
1173
1183
;;
You can’t perform that action at this time.
0 commit comments