Add cmockery legacy header.
authorAndreas Schneider <asn@cryptomilk.org>
Sat, 7 Feb 2015 17:14:46 +0000 (18:14 +0100)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 9 Feb 2015 08:23:01 +0000 (09:23 +0100)
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
DefineOptions.cmake
include/CMakeLists.txt
include/cmockery/cmockery.h [new file with mode: 0644]
include/cmockery/pbc.h [new file with mode: 0644]
tests/CMakeLists.txt
tests/test_cmockery.c [new file with mode: 0644]

index 86b94fb..d34d2a3 100644 (file)
@@ -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)
index 18de8da..4cca031 100644 (file)
@@ -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 (file)
index 0000000..a252a5f
--- /dev/null
@@ -0,0 +1 @@
+#include <cmocka.h>
diff --git a/include/cmockery/pbc.h b/include/cmockery/pbc.h
new file mode 100644 (file)
index 0000000..50bac87
--- /dev/null
@@ -0,0 +1 @@
+#include <cmocka_pbc.h>
index 596fe51..a8b9627 100644 (file)
@@ -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 (file)
index 0000000..83a7451
--- /dev/null
@@ -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);
+}