mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
17 lines
730 B
Diff
17 lines
730 B
Diff
ref https://github.com/cpputest/cpputest/issues/1004
|
|
|
|
diff --git a/tests/CppUTestExt/MockSupport_cTest.cpp b/tests/CppUTestExt/MockSupport_cTest.cpp
|
|
index 8fc55ec..5188857 100644
|
|
--- a/tests/CppUTestExt/MockSupport_cTest.cpp
|
|
+++ b/tests/CppUTestExt/MockSupport_cTest.cpp
|
|
@@ -186,8 +186,8 @@ TEST(MockSupport_c, outputParameters_differentType)
|
|
|
|
TEST(MockSupport_c, outputParametersOfType)
|
|
{
|
|
- long param = 1;
|
|
- const long retval = 2;
|
|
+ int param = 1;
|
|
+ const int retval = 2;
|
|
mock_c()->installCopier("typeName", typeCopy);
|
|
mock_c()->expectOneCall("foo")->withOutputParameterOfTypeReturning("typeName", "out", &retval);
|
|
mock_c()->actualCall("foo")->withOutputParameterOfType("typeName", "out", ¶m);
|