summaryrefslogtreecommitdiffstats
path: root/src/lib/exceptions/tests
diff options
context:
space:
mode:
authorJINMEI Tatuya <jinmei@isc.org>2011-05-20 20:53:29 +0200
committerJINMEI Tatuya <jinmei@isc.org>2011-05-20 20:53:29 +0200
commit2af8dc8ec9301a935228568f80f8ba18531a3ffc (patch)
tree06cdae1effade85dde09df61f5203c4f3e5726dd /src/lib/exceptions/tests
parent[trac542] Removed --as-needed link flag from Makefile (diff)
downloadkea-2af8dc8ec9301a935228568f80f8ba18531a3ffc.tar.xz
kea-2af8dc8ec9301a935228568f80f8ba18531a3ffc.zip
[trac542] use our run_all() wrapper wherever possible.
the only exception is now lib/exceptions/tests, so add an explicit comment about that.
Diffstat (limited to 'src/lib/exceptions/tests')
-rw-r--r--src/lib/exceptions/tests/run_unittests.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/exceptions/tests/run_unittests.cc b/src/lib/exceptions/tests/run_unittests.cc
index 0908071bac..6a0de4f898 100644
--- a/src/lib/exceptions/tests/run_unittests.cc
+++ b/src/lib/exceptions/tests/run_unittests.cc
@@ -17,5 +17,8 @@
int
main(int argc, char* argv[]) {
::testing::InitGoogleTest(&argc, argv);
+
+ // Unlike other tests we cannot use our wrapper for RUN_ALL_TESTS()
+ // due to dependency.
return (RUN_ALL_TESTS());
}