From cd7d41afd362028fb1d29a5f6e35a8365096370c Mon Sep 17 00:00:00 2001 From: vng Date: Thu, 25 Aug 2011 07:48:12 +0300 Subject: [PATCH] Do not ask anything in unit-test - simple run. --- map/map_tests/map_foreach_test.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/map/map_tests/map_foreach_test.cpp b/map/map_tests/map_foreach_test.cpp index 20f1cee755..a6bd707e09 100644 --- a/map/map_tests/map_foreach_test.cpp +++ b/map/map_tests/map_foreach_test.cpp @@ -275,10 +275,10 @@ namespace void RunTestForChoice(string const & fName) { - cout << "Run " << fName << "? (y/n)\n"; - char c; - cin >> c; - if (c == 'y') +// cout << "Run " << fName << "? (y/n)\n"; +// char c; +// cin >> c; +// if (c == 'y') RunTest(fName + DATA_FILE_EXTENSION); } } @@ -286,5 +286,5 @@ namespace UNIT_TEST(IndexForEachTest) { RunTestForChoice("minsk-pass"); - RunTestForChoice("london-center"); + //RunTestForChoice("london-center"); }