diff --git a/eng/run-test.sh b/eng/run-test.sh deleted file mode 100644 index 0475cff40cd839..00000000000000 --- a/eng/run-test.sh +++ /dev/null @@ -1,304 +0,0 @@ -#!/usr/bin/env bash - -wait_on_pids() -{ - # Wait on the last processes - for job in $1 - do - wait $job - if [ "$?" -ne 0 ] - then - TestsFailed=$(($TestsFailed+1)) - fi - done -} - -usage() -{ - echo "Runs .NET CoreFX tests on FreeBSD, Linux, NetBSD, illumos or Solaris" - echo "usage: run-test [options]" - echo - echo "Input sources:" - echo " --runtime Location of root of the binaries directory" - echo " containing the FreeBSD, Linux, NetBSD, illumos or Solaris runtime" - echo " default: /bin/testhost/netcoreapp---" - echo " --corefx-tests Location of the root binaries location containing" - echo " the tests to run" - echo " default: /artifacts/bin" - echo - echo "Flavor/OS/Architecture options:" - echo " --configuration Configuration to run (Debug/Release)" - echo " default: Debug" - echo " --os OS to run (FreeBSD, Linux, NetBSD, illumos or Solaris)" - echo " default: detect current OS" - echo " --arch Architecture to run (x64, arm, armel, x86, arm64, loongarch64)" - echo " default: detect current architecture" - echo - echo "Execution options:" - echo " --sequential Run tests sequentially (default is to run in parallel)." - echo " --restrict-proj Run test projects that match regex" - echo " default: .* (all projects)" - echo " --useServerGC Enable Server GC for this test run" - echo " --test-dir Run tests only in the specified directory. Path is relative to the directory" - echo " specified by --corefx-tests" - echo " --test-dir-file Run tests only in the directories specified by the file at . Paths are" - echo " listed one line, relative to the directory specified by --corefx-tests" - echo " --test-exclude-file Do not run tests in the directories specified by the file at . Paths are" - echo " listed one line, relative to the directory specified by --corefx-tests" - echo " --timeout