# Percona-TokuBackup **Repository Path**: mirrors_percona/Percona-TokuBackup ## Basic Information - **Project Name**: Percona-TokuBackup - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2025-09-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Percona TokuBackup ====== Percona TokuBackup is a C library that allows users to make consistent copies of a directory of files, even while the respective files are being edited, removed, added, and/or renamed. This repository contains the library and associated unit and integration tests. Building -------- This library requires cmake 2.8.8 or greater to create a build environment on your target machine. To create this environment, from the top of the repository: ``` cd backup mkdir MAKEDIR cd MAKEDIR CC=gcc47 CXX=g++47 cmake .. ``` To build you then simply have to type: make Testing -------- To run a combined suite of unit tests and integration tests, run the following command after building: ctest This will show the progress of the tests and run valgrind memory and thread checks for each test.