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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
#
# Copyright (c) 2019-2023 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
import os ;
path-constant this_dir : . ;
# The hostname to use for examples
local hostname = [ os.environ BOOST_MYSQL_SERVER_HOST ] ;
if $(hostname) = ""
{
hostname = "localhost" ;
}
# "Regular" examples
local regular_examples =
snippets
tutorial
async_callbacks
async_coroutinescpp20
async_futures
metadata
ssl
timeouts
;
for local example in $(regular_examples)
{
run
"$(example).cpp"
/boost/mysql/test//boost_mysql_compiled
:
<testing.arg>"example_user example_password $(hostname)"
;
}
# Order management examples. These must be run several times through a Python script
local order_examples =
prepared_statements_cpp11
prepared_statements_cpp14
stored_procedures_cpp11
stored_procedures_cpp14
;
for local example in $(order_examples)
{
run
"order_management/$(example).cpp"
/boost/mysql/test//boost_mysql_compiled
: requirements
<testing.launcher>"python $(this_dir)/private/run_stored_procedures.py"
<testing.arg>$(hostname)
: target-name "boost_mysql_example_$(example)"
;
}
# Coroutines, which requires Boost.Context
run
async_coroutines.cpp
/boost/mysql/test//boost_mysql_compiled
/boost/context//boost_context
:
<testing.arg>"example_user example_password $(hostname)"
;
# UNIX. Honor BOOST_MYSQL_NO_UNIX_SOCKET_TESTS for homogeneity with cmake
if [ os.environ BOOST_MYSQL_NO_UNIX_SOCKET_TESTS ] = "" {
run
unix_socket.cpp
/boost/mysql/test//boost_mysql_compiled
:
<testing.arg>"example_user example_password"
;
}
# Source script
run
source_script.cpp
/boost/mysql/test//boost_mysql_compiled
: requirements
<testing.arg>"example_user example_password $(hostname) $(this_dir)/private/test_script.sql"
;
|