summaryrefslogtreecommitdiff
path: root/build-test.sh
diff options
context:
space:
mode:
authorGleb Balykov <g.balykov@samsung.com>2020-07-14 00:25:19 +0300
committerAlexander Soldatov/AI Compiler Lab /SRR/Staff Engineer/Samsung Electronics <soldatov.a@samsung.com>2020-07-23 16:00:54 +0300
commitf0f313a5bfed8aa7cdab2c56e55002ef71da6a55 (patch)
tree5c3ffd0a780fbba6b314f786ae1331b5a7d19e3f /build-test.sh
parent8cf11f8b63e005c2d088faf92c86efafb7b3476c (diff)
downloadcoreclr-f0f313a5bfed8aa7cdab2c56e55002ef71da6a55.tar.gz
coreclr-f0f313a5bfed8aa7cdab2c56e55002ef71da6a55.tar.bz2
coreclr-f0f313a5bfed8aa7cdab2c56e55002ef71da6a55.zip
[Tizen] Build CoreCLR tests in spec
Diffstat (limited to 'build-test.sh')
-rwxr-xr-xbuild-test.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/build-test.sh b/build-test.sh
index 59f4fe6bbd..6ef1447b77 100755
--- a/build-test.sh
+++ b/build-test.sh
@@ -578,6 +578,7 @@ usage()
echo "bindir - output directory (defaults to $__ProjectRoot/bin)"
echo "msbuildonunsupportedplatform - build managed binaries even if distro is not officially supported."
echo "priority1 - include priority=1 tests in the build"
+ echo "skipgenerateversion - disable version generation even if MSBuild is supported."
exit 1
}
@@ -933,6 +934,10 @@ while :; do
__UnprocessedBuildArgs+=("/p:CLRTestPriorityToBuild=1")
;;
+ skipgenerateversion)
+ __SkipGenerateVersion=1
+ ;;
+
*)
__UnprocessedBuildArgs+=("$1")
;;