diff options
author | Andrew Morrow <acm@mongodb.com> | 2018-06-14 13:06:32 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2018-06-14 17:54:18 -0400 |
commit | 9e1dd9db4bf614c785f51b23f73facc45fd75302 (patch) | |
tree | f41c9f727f82d6d2cfaec06ab643883292bf2eb8 /src/mongo/unittest | |
parent | d54be2fa9beef38399f4771a50e0bd8d3bf70d08 (diff) | |
download | mongo-9e1dd9db4bf614c785f51b23f73facc45fd75302.tar.gz |
SERVER-35600 Add support for targeting watchos
Diffstat (limited to 'src/mongo/unittest')
-rw-r--r-- | src/mongo/unittest/death_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/unittest/death_test.cpp b/src/mongo/unittest/death_test.cpp index 73bb1c91c1e..e9def2e6e75 100644 --- a/src/mongo/unittest/death_test.cpp +++ b/src/mongo/unittest/death_test.cpp @@ -67,8 +67,8 @@ void DeathTestImpl::_doTest() { #if defined(_WIN32) log() << "Skipping death test on Windows"; return; -#elif defined(__APPLE__) && TARGET_OS_TV - log() << "Skipping death test on tvOS"; +#elif defined(__APPLE__) && (TARGET_OS_TV || TARGET_OS_WATCH) + log() << "Skipping death test on tvOS/watchOS"; return; #else int pipes[2]; |