1 config BR2_PACKAGE_GTEST
3 depends on BR2_USE_WCHAR
4 depends on BR2_TOOLCHAIN_HAS_THREADS
5 depends on BR2_INSTALL_LIBSTDCPP
6 depends on BR2_USE_MMU # fork()
8 Google's framework for writing C++ tests on a variety of
9 platforms (Linux, Mac OS X, Windows, Cygwin, Windows CE, and
10 Symbian). Based on the xUnit architecture. Supports
11 automatic test discovery, a rich set of assertions,
12 user-defined assertions, death tests, fatal and non-fatal
13 failures, value- and type-parameterized tests, various
14 options for running the tests, and XML test report
17 Gtest also allows to easily build testsuites for C programs.
19 This package allows running testsuites on the target which
20 might be advantageous in certain cases.
22 http://code.google.com/p/googletest/
24 comment "gtest needs a toolchain w/ C++, wchar, threads"
25 depends on BR2_USE_MMU
26 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP