76 lines
2.7 KiB
Ruby
76 lines
2.7 KiB
Ruby
class Cmockery < Formula
|
|
desc "Unit testing and mocking library for C"
|
|
homepage "https://github.com/google/cmockery"
|
|
url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/cmockery/cmockery-0.1.2.tar.gz"
|
|
sha256 "b9e04bfbeb45ceee9b6107aa5db671c53683a992082ed2828295e83dc84a8486"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "f3b1c3d5c96ea9e30dc008e557239e972a18e65b3dd1ee8a593a0eb6e11d7858" => :sierra
|
|
sha256 "6cc440503b2fce7def7d584aacf8e9142ad430de799b466f609f57fd9beb4ede" => :el_capitan
|
|
sha256 "a6ac86af8d5b7f5964a480cc91bfbdaf260c59eae2c4b79663ebab2dfdb7d062" => :yosemite
|
|
sha256 "673662bebae6bc4e43b60137ebad7141af0eeecffa41f4e7c61065b0f2262d25" => :mavericks
|
|
end
|
|
|
|
# This patch will be integrated upstream in 0.1.3, this is due to malloc.h being already in stdlib on OSX
|
|
# It is safe to remove it on the next version
|
|
# More info on https://code.google.com/p/cmockery/issues/detail?id=3
|
|
patch :DATA
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff -uNr cmockery-0.1.2.orig/src/cmockery.c cmockery-0.1.2/src/cmockery.c
|
|
--- cmockery-0.1.2.orig/src/cmockery.c 2008-08-29 19:55:53.000000000 -0600
|
|
+++ cmockery-0.1.2/src/cmockery.c 2009-05-31 15:29:25.000000000 -0600
|
|
@@ -13,7 +13,12 @@
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
+#ifdef HAVE_CONFIG_H
|
|
+#include "config.h"
|
|
+#endif
|
|
+#ifdef HAVE_MALLOC_H
|
|
#include <malloc.h>
|
|
+#endif
|
|
#include <setjmp.h>
|
|
#ifndef _WIN32
|
|
#include <signal.h>
|
|
diff -uNr cmockery-0.1.2.orig/src/example/allocate_module.c cmockery-0.1.2/src/example/allocate_module.c
|
|
--- cmockery-0.1.2.orig/src/example/allocate_module.c 2008-08-29 16:23:29.000000000 -0600
|
|
+++ cmockery-0.1.2/src/example/allocate_module.c 2009-05-31 15:29:48.000000000 -0600
|
|
@@ -13,7 +13,13 @@
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
+#ifdef HAVE_CONFIG_H
|
|
+#include "config.h"
|
|
+#endif
|
|
+#ifdef HAVE_MALLOC_H
|
|
#include <malloc.h>
|
|
+#endif
|
|
+#include <sys/types.h>
|
|
|
|
#if UNIT_TESTING
|
|
extern void* _test_malloc(const size_t size, const char* file, const int line);
|
|
diff -uNr cmockery-0.1.2.orig/src/example/calculator.c cmockery-0.1.2/src/example/calculator.c
|
|
--- cmockery-0.1.2.orig/src/example/calculator.c 2008-08-29 16:23:29.000000000 -0600
|
|
+++ cmockery-0.1.2/src/example/calculator.c 2009-05-31 15:30:08.000000000 -0600
|
|
@@ -16,8 +16,13 @@
|
|
|
|
// A calculator example used to demonstrate the cmockery testing library.
|
|
|
|
+#ifdef HAVE_CONFIG_H
|
|
+#include "config.h"
|
|
+#endif
|
|
#include <assert.h>
|
|
+#ifdef HAVE_MALLOC_H
|
|
#include <malloc.h>
|
|
+#endif
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|