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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManish Sinha <manish.sinha@xamarin.com>2015-05-13 23:24:46 +0300
committerManish Sinha <manish.sinha@xamarin.com>2015-05-13 23:35:29 +0300
commit79cc9b68c2b9d243218f6f39dc042bd128b50b9c (patch)
tree4b163930e41550d0603ed07f77f14f4980c87cc6 /main/Makefile.am
parent038171409fe765917b4310c552ca160399149905 (diff)
[UITets] Add filtering of uitest target by 'categories' argument
Now when running $ make uitest assembly=assemblyname.dll it is possible to selectively run certain tests by passing another optional argument named categories which is a comma seperated list of NUnit categories $ make uitest assembly=UserInterfaceTests.dll categories=DotNet,Misc
Diffstat (limited to 'main/Makefile.am')
-rw-r--r--main/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/Makefile.am b/main/Makefile.am
index a40a7c0d63..0ef7da6f10 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -153,7 +153,7 @@ test:
cd tests && $(MAKE) test assembly=$(assembly)
uitest:
- cd tests && $(MAKE) uitest assembly=$(assembly)
+ cd tests && $(MAKE) uitest assembly=$(assembly) categories=$(categories)
coverage:
cd tests && $(MAKE) coverage