-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The new file provides macros that help with filtering googletest on some of the platforms. Signed-off-by: Jose Luis Rivero <[email protected]> Signed-off-by: Louise Poubel <[email protected]>
- Loading branch information
Showing
2 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef IGNITION_UTILITIES_EXTRATESTMACROS_HH | ||
#define IGNITION_UTILITIES_EXTRATESTMACROS_HH | ||
|
||
#include <ignition/utilities/detail/ExtraTestMacros.hh> | ||
|
||
/// \brief Restrict the execution of the test for the Windows platform. | ||
/// The test will be compiled on Windows too but will never be run as | ||
/// part of the test suite. The macro uses the Disabled_ prefix provided | ||
/// by googletest. See | ||
/// https://chromium.googlesource.com/external/github.com/google/googletest/+/HEAD/googletest/docs/advanced.md | ||
#define IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) \ | ||
DETAIL_IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) | ||
|
||
/// \brief Restrict the execution of the test for the Mac platform. | ||
/// The test will be compiled on Windows too but will never be run as | ||
/// part of the test suite. The macro uses the Disabled_ prefix provided | ||
/// by googletest. See | ||
/// https://chromium.googlesource.com/external/github.com/google/googletest/+/HEAD/googletest/docs/advanced.md | ||
#define IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) \ | ||
DETAIL_IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) | ||
|
||
/// \brief Restrict the execution of the test to just the Linux platform | ||
/// Other platforms will get the test compiled but it won't be run | ||
/// as part of the test suite execution. | ||
/// The macro uses the Disabled_ prefix provided by googletest. See | ||
/// https://chromium.googlesource.com/external/github.com/google/googletest/+/HEAD/googletest/docs/advanced.md | ||
#define IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) \ | ||
DETAIL_IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright (C) 2020 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
|
||
#ifndef IGNITION_UTILITIES_DETAIL_EXTRATESTMACROS_HH | ||
#define IGNITION_UTILITIES_DETAIL_EXTRATESTMACROS_HH | ||
|
||
#include <ignition/utilities/SuppressWarning.hh> | ||
|
||
#define DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(x) DISABLED_##x | ||
|
||
#if defined _WIN32 | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) \ | ||
DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(TestName) | ||
|
||
#else | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_WIN32(TestName) \ | ||
TestName | ||
|
||
#endif | ||
|
||
#if defined __APPLE__ | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) \ | ||
DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(TestName) | ||
|
||
#else | ||
|
||
#define DETAIL_IGN_UTILS_TEST_DISABLED_ON_MAC(TestName) \ | ||
TestName | ||
|
||
#endif | ||
|
||
#if defined __linux__ | ||
|
||
#define DETAIL_IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) \ | ||
TestName | ||
|
||
#else | ||
|
||
#define DETAIL_IGN_UTILS_TEST_ENABLED_ONLY_ON_LINUX(TestName) \ | ||
DETAIL_IGN_UTILS_ADD_DISABLED_PREFIX(TestName) | ||
|
||
#endif | ||
|
||
|
||
#endif |