Skip to content

Commit

Permalink
systemtests: python-fd-percona-xtrabackup-test: removed mariadb for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Jan 24, 2020
1 parent 3a18cea commit 33fe1ed
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 13 deletions.
3 changes: 1 addition & 2 deletions core/CMakeLists.txt
@@ -1,6 +1,6 @@
# BAREOS® - Backup Archiving REcovery Open Sourced
#
# Copyright (C) 2017-2019 Bareos GmbH & Co. KG
# Copyright (C) 2017-2020 Bareos GmbH & Co. KG
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of version three of the GNU Affero General Public
Expand Down Expand Up @@ -923,7 +923,6 @@ message(" GAWK: ${GAWK}")
message(" RPCGEN: ${RPCGEN}")
message(" MTX: ${MTX}")
message(" XTRABACKUP: ${XTRABACKUP}")
message(" MARIABACKUP: ${MARIABACKUP}")
message(" DEVELOPER: ${developer}")
message(" LocalBuildDefinitionsFile: ${BareosLocalBuildDefinitionsFile}")
message(" HAVE_IS_TRIVIALLY_COPYABLE: ${HAVE_IS_TRIVIALLY_COPYABLE}")
Expand Down
3 changes: 1 addition & 2 deletions core/cmake/BareosFindPrograms.cmake
@@ -1,6 +1,6 @@
# BAREOS® - Backup Archiving REcovery Open Sourced
#
# Copyright (C) 2017-2019 Bareos GmbH & Co. KG
# Copyright (C) 2017-2020 Bareos GmbH & Co. KG
#
# This program is Free Software; you can redistribute it and/or
# modify it under the terms of version three of the GNU Affero General Public
Expand Down Expand Up @@ -39,4 +39,3 @@ find_program(GDB gdb)
find_program(DBX dbx)
find_program(MDB mdb)
find_program(XTRABACKUP xtrabackup)
find_program(MARIABACKUP mariabackup)
11 changes: 3 additions & 8 deletions systemtests/CMakeLists.txt
Expand Up @@ -593,19 +593,14 @@ endif()
if(TARGET python-fd AND ovirt_server)
list(APPEND SYSTEM_TESTS "python-fd-ovirt-plugin-test")
else()
message(STATUS "disabling python-fd-ovirt-plugin-test as ovirt_server is not set")
list(APPEND SYSTEM_TESTS_DISABLED "python-fd-ovirt-plugin-test")
endif()

if(XTRABACKUP)
set(XTRABACKUP_OR_MARIABACKUP ${XTRABACKUP})
endif()
if(MARIABACKUP)
set(XTRABACKUP_OR_MARIABACKUP ${MARIABACKUP})
set(extradumpoptions "--user=root")
endif()
if(TARGET python-fd AND XTRABACKUP_OR_MARIABACKUP)
if(TARGET python-fd AND XTRABACKUP)
list(APPEND SYSTEM_TESTS "python-fd-percona-xtrabackup-plugin-test")
else()
message(STATUS "disabling python-fd-percona-xtrabackup-plugin-test as XTRABACKUP was not found")
list(APPEND SYSTEM_TESTS_DISABLED "python-fd-percona-xtrabackup-plugin-test")
endif()

Expand Down
Expand Up @@ -5,6 +5,6 @@ FileSet {
Options {
signature = MD5
}
Plugin = "python:module_path=@python_plugin_module_src_test_dir@:module_name=bareos-fd-percona-xtrabackup:dumpbinary=@XTRABACKUP_OR_MARIABACKUP@:extradumpoptions=@extradumpoptions@"
Plugin = "python:module_path=@python_plugin_module_src_test_dir@:module_name=bareos-fd-percona-xtrabackup:dumpbinary=@XTRABACKUP@:extradumpoptions=@extradumpoptions@"
}
}

0 comments on commit 33fe1ed

Please sign in to comment.