aboutsummaryrefslogtreecommitdiffstats
path: root/testing/cpputest/test-s390x.patch
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2018-03-01 03:12:39 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2018-03-01 03:12:39 +0000
commit529ca067b237c5fffce2d5627c6a7aa8e88fc1d8 (patch)
treee729fc55becdc1807ffed0e474f01196ee1d3900 /testing/cpputest/test-s390x.patch
parent1b3dd01a4cd42c70ff508bcc4d94529c81ab08ee (diff)
downloadaports-529ca067b237c5fffce2d5627c6a7aa8e88fc1d8.tar.bz2
aports-529ca067b237c5fffce2d5627c6a7aa8e88fc1d8.tar.xz
community/cpputest: move from testing
Diffstat (limited to 'testing/cpputest/test-s390x.patch')
-rw-r--r--testing/cpputest/test-s390x.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/testing/cpputest/test-s390x.patch b/testing/cpputest/test-s390x.patch
deleted file mode 100644
index 1317511263..0000000000
--- a/testing/cpputest/test-s390x.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-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", &param);