mirror of
https://github.com/SOCI/soci.git
synced 2026-05-05 11:19:32 -05:00
bce5f9febb
While this doesn't matter for Travis CI, it makes sense to separate them for the other CI systems using more structured approach to the build steps. Add a few test_*.sh scripts for the backends that need to do something special when running the tests and just use run_test function for all the others.
11 lines
358 B
Bash
Executable File
11 lines
358 B
Bash
Executable File
#!/bin/bash -e
|
|
# Tests SOCI DB2 backend in CI builds
|
|
#
|
|
# Copyright (c) 2013 Brian R. Toonen <toonen@alcf.anl.gov>
|
|
# Copyright (c) 2013 Mateusz Loskot <mateusz@loskot.net>
|
|
# Copyright (c) 2021 Vadim Zeitlin <vz-soci@zeitlins.org>
|
|
#
|
|
source ${SOCI_SOURCE_DIR}/scripts/ci/common.sh
|
|
|
|
LSAN_OPTIONS=suppressions=${SOCI_SOURCE_DIR}/scripts/suppress_db2.txt run_test
|