[tests] Enable xammac-tests on wrench. (#3056)

Wrench runs `wrench-mac-xammac_tests`, but since there were no such target,
make would execute the `wrench-%` target, which is disabled when iOS is
disabled.

Thus this strange behavior would be seen on wrench for xammac tests when iOS
is disabled:

    /Applications/Xcode92-beta2.app/Contents/Developer/usr/bin/make -C /Users/builder/data/lanes/5665/d2b1b757/source/xamarin-macios/tests wrench-mac-xammac_tests
    git clean -xfdq
    iOS tests have been disabled [wrench-mac-xammac_tests]

By creating the `wrench-mac-xammac_tests` target, we'll end up doing the right
thing instead.
This commit is contained in:
Rolf Bjarne Kvinge 2017-11-28 22:10:56 +01:00 коммит произвёл Sebastien Pouliot
Родитель 87f9e23989
Коммит f21f48b727
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -300,6 +300,11 @@ wrench-mac-introspection:
$(Q) $(MAKE) clean-mac-introspection
git clean -xfdq
wrench-mac-xammac_tests:
@# This entire target can be removed when merging to master.
$(Q) $(MAKE) run-mac-xammac_tests
$(Q) $(MAKE) clean-mac-xammac_tests
git clean -xfdq
else
wrench-mac-%:
@echo "Mac tests have been disabled [$@]"