Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alexrp@xamarin.com>2016-09-08 02:57:07 +0300
committerAlex Rønne Petersen <alexrp@xamarin.com>2016-09-08 08:04:39 +0300
commit7d7b674ac5e521af8abd3bf1388d62d9e9b50953 (patch)
tree44d518109158a66b2dfee710b5d07f0a0f00928b /acceptance-tests/versions.mk
parentf577b619e9d410d7a2868f7c556fc934f03354fa (diff)
[acceptance-tests] Add profiler-stress suite.
Diffstat (limited to 'acceptance-tests/versions.mk')
-rw-r--r--acceptance-tests/versions.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/acceptance-tests/versions.mk b/acceptance-tests/versions.mk
index 84b4f85c6cd..0c070a0f114 100644
--- a/acceptance-tests/versions.mk
+++ b/acceptance-tests/versions.mk
@@ -3,28 +3,35 @@
SUBMODULES_CONFIG_FILE = $(top_srcdir)/acceptance-tests/SUBMODULES.json
include $(top_srcdir)/scripts/submodules/versions.mk
+$(eval $(call ValidateVersionTemplate,benchmarker,BENCHMARKER))
$(eval $(call ValidateVersionTemplate,roslyn,ROSLYN))
$(eval $(call ValidateVersionTemplate,coreclr,CORECLR))
$(eval $(call ValidateVersionTemplate,ms-test-suite,MSTESTSUITE))
# Bump the given submodule to the revision given by the REV make variable
# If COMMIT is 1, commit the change
+bump-benchmarker: __bump-benchmarker
bump-roslyn: __bump-version-roslyn
bump-coreclr: __bump-version-coreclr
bump-ms-test-suite: __bump-version-ms-test-suite
# Bump the given submodule to the branch given by the BRANCH/REMOTE_BRANCH make variables
# If COMMIT is 1, commit the change
+bump-branch-benchmarker: __bump-branch-benchmarker
bump-branch-roslyn: __bump-branch-roslyn
bump-branch-coreclr: __bump-branch-coreclr
bump-branch-ms-test-suite: __bump-branch-ms-test-suite
# Bump the given submodule to its current GIT version
# If COMMIT is 1, commit the change
+bump-current-benchmarker: __bump-current-benchmarker
bump-current-roslyn: __bump-current-version-roslyn
bump-current-coreclr: __bump-current-version-coreclr
bump-current-ms-test-suite: __bump-current-version-ms-test-suite
+commit-bump-benchmarker:
+ $(MAKE) bump-benchmarker COMMIT=1
+
commit-bump-roslyn:
$(MAKE) bump-roslyn COMMIT=1
@@ -34,6 +41,9 @@ commit-bump-coreclr:
commit-bump-ms-test-suite:
$(MAKE) bump-ms-test-suite COMMIT=1
+commit-bump-current-benchmarker:
+ $(MAKE) bump-current-benchmarker COMMIT=1
+
commit-bump-current-roslyn:
$(MAKE) bump-current-roslyn COMMIT=1