From 369fe1eba31f3e7a6f5424002eae88bfcb280efa Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 6 Jun 2018 23:35:13 +0300 Subject: Add support for build2 build --- tests/basics/buildfile | 7 +++++++ tests/basics/driver.cxx | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 tests/basics/buildfile create mode 100644 tests/basics/driver.cxx (limited to 'tests/basics') diff --git a/tests/basics/buildfile b/tests/basics/buildfile new file mode 100644 index 0000000..4c6b67a --- /dev/null +++ b/tests/basics/buildfile @@ -0,0 +1,7 @@ +# file : tests/basics/buildfile +# copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC +# license : ODB NCUEL; see accompanying LICENSE file + +import libs = libodb-oracle%lib{odb-oracle} + +exe{driver}: {hxx cxx}{*} $libs diff --git a/tests/basics/driver.cxx b/tests/basics/driver.cxx new file mode 100644 index 0000000..c49b0b1 --- /dev/null +++ b/tests/basics/driver.cxx @@ -0,0 +1,38 @@ +// file : tests/basics/driver.cxx +// copyright : Copyright (c) 2009-2018 Code Synthesis Tools CC +// license : ODB NCUEL; see accompanying LICENSE file + +// Basic test to make sure the library is usable. Functionality testing +// is done in the odb-tests package. + +#include +#include + +#include +#include +#include + +using namespace odb::oracle; + +int +main () +{ + { + std::ostringstream os; + database::print_usage (os); + assert (!os.str ().empty ()); + } + + // We can't really do much here since that would require a database. We can + // create a fake database object as long as we don't expect to get a valid + // connection. + // + database db ("john", "secret", "dummy whammy"); + + try + { + transaction t (db.begin ()); + assert (false); + } + catch (const database_exception&) {} +} -- cgit v1.1