coverity: Add modeling file for assert functions.
authorAndreas Schneider <asn@cryptomilk.org>
Mon, 29 Jul 2013 17:39:46 +0000 (19:39 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 29 Jul 2013 17:40:12 +0000 (19:40 +0200)
coverity/README [new file with mode: 0644]
coverity/coverity_assert_model.c [new file with mode: 0644]
coverity/coverity_internal_model.c [moved from coverity/coverity_model.c with 100% similarity]

diff --git a/coverity/README b/coverity/README
new file mode 100644 (file)
index 0000000..7756137
--- /dev/null
@@ -0,0 +1,9 @@
+coverity_assert_model.c:
+
+This file is a Coverity Modeling file for projects using CMocka for unit
+testing. The assert functiions could create false positives, to avoid that you
+can load this modeling file in the Coverity web interface.
+
+coverity_internal_model.c:
+
+This file is for the CMocka source code itself.
diff --git a/coverity/coverity_assert_model.c b/coverity/coverity_assert_model.c
new file mode 100644 (file)
index 0000000..e14e581
--- /dev/null
@@ -0,0 +1,77 @@
+#define LargestIntegralType unsigned long long
+
+void _assert_true(const LargestIntegralType result,
+                  const char* const expression,
+                  const char * const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_int_equal(
+    const LargestIntegralType a, const LargestIntegralType b,
+    const char * const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_int_not_equal(
+    const LargestIntegralType a, const LargestIntegralType b,
+    const char * const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_string_equal(const char * const a, const char * const b,
+                          const char * const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_string_not_equal(const char * const a, const char * const b,
+                              const char *file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_memory_equal(const void * const a, const void * const b,
+                          const size_t size, const char* const file,
+                          const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_memory_not_equal(const void * const a, const void * const b,
+                              const size_t size, const char* const file,
+                              const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_in_range(
+    const LargestIntegralType value, const LargestIntegralType minimum,
+    const LargestIntegralType maximum, const char* const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_not_in_range(
+    const LargestIntegralType value, const LargestIntegralType minimum,
+    const LargestIntegralType maximum, const char* const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_in_set(
+    const LargestIntegralType value, const LargestIntegralType values[],
+    const size_t number_of_values, const char* const file, const int line)
+{
+      __coverity_panic__();
+}
+
+void _assert_not_in_set(
+    const LargestIntegralType value, const LargestIntegralType values[],
+    const size_t number_of_values, const char* const file, const int line)
+{
+      __coverity_panic__();
+}
+