]> git.eshelyaron.com Git - emacs.git/commitdiff
New test file.
authorEric Ludlam <zappo@gnu.org>
Tue, 1 Jan 2013 03:19:00 +0000 (22:19 -0500)
committerEdward John Steere <edward.steere@gmail.com>
Wed, 25 Jan 2017 15:48:36 +0000 (17:48 +0200)
test/manual/cedet/integ_src/cpproot/main.cpp [new file with mode: 0644]

diff --git a/test/manual/cedet/integ_src/cpproot/main.cpp b/test/manual/cedet/integ_src/cpproot/main.cpp
new file mode 100644 (file)
index 0000000..7d3c619
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Main program for testing ede/cpp-root project.
+ */
+
+#include "sppmacros.h"
+#include "test.h"
+
+int main(int argc, char *argv[])
+{
+
+  return 0;
+}
+
+#ifdef FEATURE1
+int feature1()
+{
+  return 1;
+}
+#endif
+
+#ifdef FEATURE2
+int feature2()
+{
+  return 2;
+}
+#endif
+
+#ifdef FEATURE3
+int feature3()
+{
+  return 3;
+}
+#endif
+
+int generic_feature()
+{
+  return 0;
+}