blob: e68fd1f0bdba82bb22e9827a818847488e6579bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# file : tests/load/buildfile
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
import libs += libbpkg%lib{bpkg}
import libs += libbutl%lib{butl}
import libs += libodb-pgsql%lib{odb-pgsql}
import libs += libodb%lib{odb}
include ../../brep/
exe{driver}: cxx{driver} ../../brep/lib{brep} $libs
# Disable for now until build2 test module supports running custom
# commands, pre/post steps.
#
exe{driver}: test = false
# precondition: PostgreSQL server running port 8432 with brep schema created.
# test:
# ./driver ../../load/brep-load --db-host localhost --db-port 8432 ./r.conf
|