aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2015-02-07 18:14:46 +0100
committerAndreas Schneider <asn@cryptomilk.org>2015-02-09 09:23:01 +0100
commitbff3a2705048926fd03ec669fe3c10ddaf5d081c (patch)
treeaa908f0cef1935d987b6885b098cc8328ae4f854
parent236ed5c00ab215eb7382b6d908cd3fe589bffebc (diff)
downloadcmocka-bff3a2705048926fd03ec669fe3c10ddaf5d081c.tar.gz
cmocka-bff3a2705048926fd03ec669fe3c10ddaf5d081c.tar.xz
cmocka-bff3a2705048926fd03ec669fe3c10ddaf5d081c.zip
Add cmockery legacy header.
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--DefineOptions.cmake1
-rw-r--r--include/CMakeLists.txt12
-rw-r--r--include/cmockery/cmockery.h1
-rw-r--r--include/cmockery/pbc.h1
-rw-r--r--tests/CMakeLists.txt3
-rw-r--r--tests/test_cmockery.c32
6 files changed, 49 insertions, 1 deletions
diff --git a/DefineOptions.cmake b/DefineOptions.cmake
index 86b94fb..d34d2a3 100644
--- a/DefineOptions.cmake
+++ b/DefineOptions.cmake
@@ -1,2 +1,3 @@
option(WITH_STATIC_LIB "Build with a static library" OFF)
+option(WITH_CMOCKERY_SUPPORT "Install a cmockery header" OFF)
option(UNIT_TESTING "Build with unit testing" OFF)
diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt
index 18de8da..4cca031 100644
--- a/include/CMakeLists.txt
+++ b/include/CMakeLists.txt
@@ -13,3 +13,15 @@ install(
COMPONENT
headers
)
+
+if (WITH_CMOCKERY_SUPPORT)
+ install(
+ FILES
+ cmockery/cmockery.h
+ cmockery/pbc.h
+ DESTINATION
+ ${INCLUDE_INSTALL_DIR}/cmockery
+ COMPONENT
+ headers
+ )
+endif()
diff --git a/include/cmockery/cmockery.h b/include/cmockery/cmockery.h
new file mode 100644
index 0000000..a252a5f
--- /dev/null
+++ b/include/cmockery/cmockery.h
@@ -0,0 +1 @@
+#include <cmocka.h>
diff --git a/include/cmockery/pbc.h b/include/cmockery/pbc.h
new file mode 100644
index 0000000..50bac87
--- /dev/null
+++ b/include/cmockery/pbc.h
@@ -0,0 +1 @@
+#include <cmocka_pbc.h>
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 596fe51..a8b9627 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -16,7 +16,8 @@ set(CMOCKA_TESTS
test_exception_handler
test_basics
test_skip
- test_setup_fail)
+ test_setup_fail
+ test_cmockery)
foreach(_CMOCKA_TEST ${CMOCKA_TESTS})
add_cmocka_test(${_CMOCKA_TEST} ${_CMOCKA_TEST}.c ${CMOCKA_SHARED_LIBRARY})
diff --git a/tests/test_cmockery.c b/tests/test_cmockery.c
new file mode 100644
index 0000000..83a7451
--- /dev/null
+++ b/tests/test_cmockery.c
@@ -0,0 +1,32 @@
+/*
+ * Copyright 2008 Google Inc.
+ *
+ * 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.
+ */
+
+#include <stdarg.h>
+#include <stddef.h>
+#include <setjmp.h>
+#include <cmockery/cmockery.h>
+
+/* A test case that does nothing and succeeds. */
+static void null_test_success(void **state) {
+ (void) state; /* unused */
+}
+
+int main(void) {
+ const UnitTest tests[] = {
+ unit_test(null_test_success),
+ };
+ return run_tests(tests);
+}