Parcourir la source

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


git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@3907 e5f2f494-b856-4b98-b285-d166d9295462

JINMEI Tatuya il y a 14 ans
Parent
commit
f3f2b1be9f
1 fichiers modifiés avec 2 ajouts et 4 suppressions
  1. 2 4
      src/bin/recurse/tests/run_unittests.cc

+ 2 - 4
src/bin/recurse/tests/run_unittests.cc

@@ -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());
 }