[svn] commit: r3907 - /trunk/src/bin/recurse/tests/run_unittests.cc

BIND 10 source code commits bind10-changes at lists.isc.org
Tue Dec 21 01:56:23 UTC 2010


Author: jinmei
Date: Tue Dec 21 01:56:23 2010
New Revision: 3907

Log:
added TEST_DATA_BUILDDIR to the data path.  this should fix distcheck failures.
this is an urgent care fix to rescue buildbot, behavior confirmed, fix is quite trivial, so skipping review.

with some minor editorial fixes:
 - removed meaningless $Id$.  it will be soon be of no use with the migration to git.
 - brace position fixup

Modified:
    trunk/src/bin/recurse/tests/run_unittests.cc

Modified: trunk/src/bin/recurse/tests/run_unittests.cc
==============================================================================
--- trunk/src/bin/recurse/tests/run_unittests.cc (original)
+++ trunk/src/bin/recurse/tests/run_unittests.cc Tue Dec 21 01:56:23 2010
@@ -12,17 +12,15 @@
 // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 // PERFORMANCE OF THIS SOFTWARE.
 
-// $Id$
-
 #include <gtest/gtest.h>
 
 #include <dns/tests/unittest_util.h>
 
 int
-main(int argc, char* argv[])
-{
+main(int argc, char* argv[]) {
     ::testing::InitGoogleTest(&argc, argv);
     isc::UnitTestUtil::addDataPath(TEST_DATA_DIR);
+    isc::UnitTestUtil::addDataPath(TEST_DATA_BUILDDIR);
 
     return (RUN_ALL_TESTS());
 }




More information about the bind10-changes mailing list