aboutsummaryrefslogtreecommitdiff
path: root/tracer/include/driver.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tracer/include/driver.cxx')
-rw-r--r--tracer/include/driver.cxx41
1 files changed, 41 insertions, 0 deletions
diff --git a/tracer/include/driver.cxx b/tracer/include/driver.cxx
new file mode 100644
index 0000000..111f542
--- /dev/null
+++ b/tracer/include/driver.cxx
@@ -0,0 +1,41 @@
+// file : tracer/include/driver.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// Test inclusion of -odb files (compilation test).
+//
+// The setup of this test is as follows: the ODB compiler has two
+// additional include directories in its search path: .. and ../..
+// while the C++ compiler has only ../.. . This way, if a ..-based
+// path is used in the generated code, the C++ compilation will
+// fail.
+//
+
+#include <memory>
+#include <cassert>
+#include <iostream>
+
+#include <odb/exceptions.hxx>
+#include <odb/transaction.hxx>
+#include <odb/tracer/database.hxx>
+
+#include "test1.hxx"
+#include "test1-odb.hxx"
+
+#include "test2.hxx"
+#include "test2-odb.hxx"
+
+#include "test3.hxx"
+#include "test3-odb.hxx"
+
+#include "test4.hxx"
+#include "test4-odb.hxx"
+
+using namespace std;
+using namespace odb;
+
+int
+main ()
+{
+}