Skip to content

Commit

Permalink
Merge pull request #2371 from spouliot/xcode9-b4-ignore-watchos-tests…
Browse files Browse the repository at this point in the history
…-58348

[tests] Disable watchOS from harness only. Workaround #58348
  • Loading branch information
spouliot authored Jul 25, 2017
2 parents 638de61 + 8dffb06 commit 7051db8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Make.config
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ MIN_TVOS_SDK_VERSION=9.0

INCLUDE_IOS=1
INCLUDE_MAC=1
#INCLUDE_WATCH=1
INCLUDE_WATCH=1
INCLUDE_TVOS=1
INCLUDE_DEVICE=1

Expand Down
2 changes: 1 addition & 1 deletion tests/xharness/Harness.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ void LoadConfig ()
INCLUDE_IOS = make_config.ContainsKey ("INCLUDE_IOS") && !string.IsNullOrEmpty (make_config ["INCLUDE_IOS"]);
INCLUDE_TVOS = make_config.ContainsKey ("INCLUDE_TVOS") && !string.IsNullOrEmpty (make_config ["INCLUDE_TVOS"]);
JENKINS_RESULTS_DIRECTORY = make_config ["JENKINS_RESULTS_DIRECTORY"];
INCLUDE_WATCH = make_config.ContainsKey ("INCLUDE_WATCH") && !string.IsNullOrEmpty (make_config ["INCLUDE_WATCH"]);
INCLUDE_WATCH = false;
INCLUDE_MAC = make_config.ContainsKey ("INCLUDE_MAC") && !string.IsNullOrEmpty (make_config ["INCLUDE_MAC"]);
MAC_DESTDIR = make_config ["MAC_DESTDIR"];
IOS_DESTDIR = make_config ["IOS_DESTDIR"];
Expand Down

0 comments on commit 7051db8

Please sign in to comment.