* test/manual/cedet/integ_src/globalref/test/ManagerTest.cc: These
test files contributed by Barry OReilly, modified for use in the
automated tests for CEDET, and with additional comments.
inc/Util.hh, src/Util.cc: Search symbol both in and outside of
namespaces.
--- /dev/null
+#include "Util.hh"
+#include "Manager.hh"
+#include "ManagerTest.hh"
+
+//
+// This fcn uses the namespaces used in the test, but should not be
+// a search destination.
+//
+namespace play { namespace test {
+
+ ManagerTest() {
+ printf("Inside ManagerTest ctor.\n");
+ play::prod::Manager manager(666);
+ }
+
+}}