2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-01-28 07:22:26 +00:00
Files
mysql/test/integration/Jamfile
Anarthal (Rubén Pérez) c343cde1fb Improved discussion and examples
Added a tutorial on UPDATEs, transactions and multi-queries
Added a tutorial on connection_pool
Added a tutorial on error handling
Added examples on INSERTs and DELETEs
Rewrote the discussion page on character sets
Added a discussion page on the templated connection class
Removed superseded examples on timeouts and multi-queries
Updated the coverage build to gcc-14 (gcc-13 was using a non-LTS release
that caused problems)

Contributes to #365 and #366
2024-11-29 17:47:44 +01:00

67 lines
1.8 KiB
Plaintext

#
# Copyright (c) 2019-2024 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)
#
cpp-pch pch
:
pch.hpp
/boost/mysql/test//boost_mysql_test
;
run
pch
/boost/mysql/test//common_test_sources
/boost/mysql/test//boost_mysql_test
/boost/mysql/test//launch_with_valgrind
# Utilities
src/server_features.cpp
src/metadata_validator.cpp
src/spotchecks_helpers.cpp
src/utils.cpp
# Actual tests
test/spotchecks.cpp
test/execution_requests.cpp
test/crud.cpp
test/handshake.cpp
test/prepared_statements.cpp
test/stored_procedures.cpp
test/multi_queries.cpp
test/static_interface.cpp
test/reconnect.cpp
test/any_connection.cpp
test/character_set_tracking.cpp
test/pipeline.cpp
test/connection_pool.cpp
test/db_specific.cpp
test/database_types.cpp
# Snippets
test/snippets/tutorials.cpp
test/snippets/overview.cpp
test/snippets/connection_establishment.cpp
test/snippets/dynamic.cpp
test/snippets/static.cpp
test/snippets/prepared_statements.cpp
test/snippets/multi_resultset.cpp
test/snippets/multi_function.cpp
test/snippets/metadata.cpp
test/snippets/charsets.cpp
test/snippets/time_types.cpp
test/snippets/connection_pool.cpp
test/snippets/sql_formatting.cpp
test/snippets/sql_formatting_custom.cpp
test/snippets/pipeline.cpp
test/snippets/templated_connection.cpp
: requirements
<include>include
: target-name boost_mysql_integrationtests
;