diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-10-22 11:23:21 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-10-22 11:23:21 +0200 |
commit | f4c94ca015b123ec01037e521582d3a04f4c4b81 (patch) | |
tree | 21492eece1c7e8c16c8128a5986d7cc3c163345a /tracer/include/driver.cxx | |
parent | c2bb4633ac31e1933908dc73476ce9ddffff8dad (diff) |
Implement inclusion of dependant -odb headers
New test: tracer/include.
Diffstat (limited to 'tracer/include/driver.cxx')
-rw-r--r-- | tracer/include/driver.cxx | 41 |
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 () +{ +} |