diff options
author | Thomas Winget <tewinget@gmail.com> | 2015-03-25 07:30:23 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2015-03-25 07:30:23 -0400 |
commit | 874f48bc82a5d73695171287a8397d037b471547 (patch) | |
tree | 8db94233f02c113f2f0a91febfba55a3f6beeb79 /tests/gtest/src/gtest_main.cc | |
parent | BerkeleyDB implementation of BlockchainDB seems to be working! (diff) | |
parent | Merge upstream updates into blockchain branch (diff) | |
download | monero-874f48bc82a5d73695171287a8397d037b471547.tar.xz |
update berkeleydb branch to blockchain branch
Diffstat (limited to 'tests/gtest/src/gtest_main.cc')
-rw-r--r-- | tests/gtest/src/gtest_main.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/gtest/src/gtest_main.cc b/tests/gtest/src/gtest_main.cc index a09bbe0c6..f30282255 100644 --- a/tests/gtest/src/gtest_main.cc +++ b/tests/gtest/src/gtest_main.cc @@ -27,13 +27,12 @@ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -#include <iostream> +#include <stdio.h> #include "gtest/gtest.h" GTEST_API_ int main(int argc, char **argv) { - std::cout << "Running main() from gtest_main.cc\n"; - + printf("Running main() from gtest_main.cc\n"); testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); } |