]> git.eshelyaron.com Git - emacs.git/commitdiff
Add test files
authorEric Ludlam <zappo@gnu.org>
Thu, 2 Jan 2014 01:44:55 +0000 (20:44 -0500)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:48:36 +0000 (17:48 +0200)
* test/manual/cedet/integ_src/globalref/src/Manager.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.

test/manual/cedet/integ_src/globalref/src/Manager.cc [new file with mode: 0644]

diff --git a/test/manual/cedet/integ_src/globalref/src/Manager.cc b/test/manual/cedet/integ_src/globalref/src/Manager.cc
new file mode 100644 (file)
index 0000000..7f8ca83
--- /dev/null
@@ -0,0 +1,14 @@
+#include "Util.hh"
+#include "Manager.hh"
+
+//
+// This contains source using namespaces that are used in the test,
+// but with an impl that we aren't searching for.
+//
+namespace play { namespace prod {
+
+Manager(const int param) {
+   printf("Inside Manager ctor. myUtilFunc returned: %d\n", play::prod::myUtilFunc(param));
+}
+
+}}