blob: f2f9382153b1e3d9a1bc589502b1668596fabd9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// file : tracer/include/driver.cxx
// author : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 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::core;
int
main ()
{
}
|