aboutsummaryrefslogtreecommitdiff
path: root/tests
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 /tests
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>
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt3
-rw-r--r--tests/test_cmockery.c32
2 files changed, 34 insertions, 1 deletions
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);
+}