gmock_main.cc (googletest-release-1.10.0) | : | gmock_main.cc (googletest-release-1.11.0) | ||
---|---|---|---|---|
skipping to change at line 34 | skipping to change at line 34 | |||
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |||
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |||
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
#include <iostream> | #include <iostream> | |||
#include "gmock/gmock.h" | #include "gmock/gmock.h" | |||
#include "gtest/gtest.h" | #include "gtest/gtest.h" | |||
#ifdef ARDUINO | #if GTEST_OS_ESP8266 || GTEST_OS_ESP32 | |||
#if GTEST_OS_ESP8266 | ||||
extern "C" { | ||||
#endif | ||||
void setup() { | void setup() { | |||
// Since Google Mock depends on Google Test, InitGoogleMock() is | // Since Google Mock depends on Google Test, InitGoogleMock() is | |||
// also responsible for initializing Google Test. Therefore there's | // also responsible for initializing Google Test. Therefore there's | |||
// no need for calling testing::InitGoogleTest() separately. | // no need for calling testing::InitGoogleTest() separately. | |||
testing::InitGoogleMock(); | testing::InitGoogleMock(); | |||
} | } | |||
void loop() { RUN_ALL_TESTS(); } | void loop() { RUN_ALL_TESTS(); } | |||
#if GTEST_OS_ESP8266 | ||||
} | ||||
#endif | ||||
#else | #else | |||
// MS C++ compiler/linker has a bug on Windows (not on Windows CE), which | // MS C++ compiler/linker has a bug on Windows (not on Windows CE), which | |||
// causes a link error when _tmain is defined in a static library and UNICODE | // causes a link error when _tmain is defined in a static library and UNICODE | |||
// is enabled. For this reason instead of _tmain, main function is used on | // is enabled. For this reason instead of _tmain, main function is used on | |||
// Windows. See the following link to track the current status of this bug: | // Windows. See the following link to track the current status of this bug: | |||
// https://web.archive.org/web/20170912203238/connect.microsoft.com/VisualStudio /feedback/details/394464/wmain-link-error-in-the-static-library | // https://web.archive.org/web/20170912203238/connect.microsoft.com/VisualStudio /feedback/details/394464/wmain-link-error-in-the-static-library | |||
// // NOLINT | // // NOLINT | |||
#if GTEST_OS_WINDOWS_MOBILE | #if GTEST_OS_WINDOWS_MOBILE | |||
# include <tchar.h> // NOLINT | # include <tchar.h> // NOLINT | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 8 lines changed or added |