diff options
author | Carlos Santos <casantos@datacom.ind.br> | 2015-07-31 08:53:42 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-10-03 17:11:01 +0200 |
commit | 63086aa42f28c806663ab9df15c94083f2a8bb1f (patch) | |
tree | 8efd695416948a0ccca1abb4b12e614dc3e9f0c3 /package/gmock/0001-force-use-python2.patch | |
parent | d6d1848c89afd0001b5419f5f1e8983c6cf83b91 (diff) | |
download | buildroot-63086aa42f28c806663ab9df15c94083f2a8bb1f.tar.gz buildroot-63086aa42f28c806663ab9df15c94083f2a8bb1f.zip |
gmock: new package
Inspired by jMock, EasyMock, and Hamcrest, and designed with C++'s
specifics in mind, Google C++ Mocking Framework (or Google Mock for
short) is a library for writing and using C++ mock classes.
Google Mock:
* lets you create mock classes trivially using simple macros,
* supports a rich set of matchers and actions,
* handles unordered, partially ordered, or completely ordered
expectations,
* is extensible by users, and
* works on Linux, Mac OS X, Windows, Windows Mobile, minGW, and
Symbian.
http://code.google.com/p/googlemock/
There are both host and target packages. The target one has include
files required to compile the tests and the static libraries required
to link/run them. The host package installs gmock_gen, a Python script
used to generate code mocks.
Notice that GMock 1.7.0 requires the Python 2 host package even if
Python 3 is selected as a target package.
Signed-off-by: Marcelo Barbosa <marcelo.barbosa@datacom.ind.br>
Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Reviewed-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gmock/0001-force-use-python2.patch')
-rw-r--r-- | package/gmock/0001-force-use-python2.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/gmock/0001-force-use-python2.patch b/package/gmock/0001-force-use-python2.patch new file mode 100644 index 0000000000..5dcb231168 --- /dev/null +++ b/package/gmock/0001-force-use-python2.patch @@ -0,0 +1,20 @@ +Force use of Python 2 even when Python 3 is the default Python interpreter. + +Signed-off-by: Carlos Santos <casantos@datacom.ind.br> + +--- ./gtest/scripts/fuse_gtest_files.py.orig 2013-09-18 14:48:30.000000000 -0300 ++++ ./gtest/scripts/fuse_gtest_files.py 2015-07-22 15:42:53.291591205 -0300 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2 + # + # Copyright 2009, Google Inc. + # All rights reserved. +--- ./scripts/generator/gmock_gen.py.orig 2013-09-18 14:50:15.000000000 -0300 ++++ ./scripts/generator/gmock_gen.py 2015-07-22 17:06:51.071815634 -0300 +@@ -1,4 +1,4 @@ +-#!/usr/bin/env python ++#!/usr/bin/env python2 + # + # Copyright 2008 Google Inc. All Rights Reserved. + # |