2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-31 14:05:33 +00:00

[#1227] reverted commit

This commit is contained in:
Razvan Becheriu
2020-05-15 18:05:17 +03:00
parent d351009b0d
commit 5963571879
2 changed files with 4 additions and 4 deletions

View File

@@ -368,12 +368,12 @@ TEST(MySqlConnection, checkTimeConversion) {
}
/// @brief This test verifies that database backend can operate in Read-Only mode.
TEST_F(MySqlHostDataSourceTest, DISABLED_testReadOnlyDatabase) {
TEST_F(MySqlHostDataSourceTest, testReadOnlyDatabase) {
testReadOnlyDatabase(MYSQL_VALID_TYPE);
}
/// @brief This test verifies that database backend can operate in Read-Only mode.
TEST_F(MySqlHostDataSourceTest, DISABLED_testReadOnlyDatabaseMultiThreading) {
TEST_F(MySqlHostDataSourceTest, testReadOnlyDatabaseMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
testReadOnlyDatabase(MYSQL_VALID_TYPE);
}

View File

@@ -377,12 +377,12 @@ TEST(PgSqlHostDataSource, NoCallbackOnOpenFailMultiThreading) {
}
/// @brief This test verifies that database backend can operate in Read-Only mode.
TEST_F(PgSqlHostDataSourceTest, DISABLED_testReadOnlyDatabase) {
TEST_F(PgSqlHostDataSourceTest, testReadOnlyDatabase) {
testReadOnlyDatabase(PGSQL_VALID_TYPE);
}
/// @brief This test verifies that database backend can operate in Read-Only mode.
TEST_F(PgSqlHostDataSourceTest, DISABLED_testReadOnlyDatabaseMultiThreading) {
TEST_F(PgSqlHostDataSourceTest, testReadOnlyDatabaseMultiThreading) {
MultiThreadingMgr::instance().setMode(true);
testReadOnlyDatabase(PGSQL_VALID_TYPE);
}