mirror of
https://github.com/chylex/Nextcloud-Desktop.git
synced 2025-04-13 04:15:43 +02:00
Rename the csync_journal files to csync_statedb.
This commit is contained in:
parent
879680cc0c
commit
88690312d7
@ -42,7 +42,7 @@ set(csync_SRCS
|
||||
csync.c
|
||||
csync_config.c
|
||||
csync_exclude.c
|
||||
csync_journal.c
|
||||
csync_statedb.c
|
||||
csync_lock.c
|
||||
csync_time.c
|
||||
csync_util.c
|
||||
|
@ -36,7 +36,7 @@
|
||||
#include "csync_config.h"
|
||||
#include "csync_exclude.h"
|
||||
#include "csync_lock.h"
|
||||
#include "csync_journal.h"
|
||||
#include "csync_statedb.h"
|
||||
#include "csync_time.h"
|
||||
#include "csync_util.h"
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
||||
|
||||
#include "c_lib.h"
|
||||
#include "csync_private.h"
|
||||
#include "csync_journal.h"
|
||||
#include "csync_statedb.h"
|
||||
#include "csync_util.h"
|
||||
|
||||
#define CSYNC_LOG_CATEGORY_NAME "csync.journal"
|
@ -32,7 +32,7 @@
|
||||
|
||||
#include "csync_private.h"
|
||||
#include "csync_exclude.h"
|
||||
#include "csync_journal.h"
|
||||
#include "csync_statedb.h"
|
||||
#include "csync_update.h"
|
||||
#include "csync_util.h"
|
||||
|
||||
|
@ -34,13 +34,13 @@ macro_add_check_test(check_csync_create csync_tests/check_csync_create.c ${TEST_
|
||||
macro_add_check_test(check_csync_lock csync_tests/check_csync_lock.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_config csync_tests/check_csync_config.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_exclude csync_tests/check_csync_exclude.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_journal_load csync_tests/check_csync_journal_load.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_statedb_load csync_tests/check_csync_statedb_load.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_time csync_tests/check_csync_time.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_util csync_tests/check_csync_util.c ${TEST_TARGET_LIBRARIES})
|
||||
|
||||
# csync tests which require init
|
||||
macro_add_check_test(check_csync_init csync_tests/check_csync_init.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_journal_query csync_tests/check_csync_journal_query.c ${TEST_TARGET_LIBRARIES})
|
||||
macro_add_check_test(check_csync_statedb_query csync_tests/check_csync_statedb_query.c ${TEST_TARGET_LIBRARIES})
|
||||
|
||||
# vio
|
||||
macro_add_check_test(check_vio_handle vio_tests/check_vio_handle.c ${TEST_TARGET_LIBRARIES})
|
||||
|
@ -5,7 +5,7 @@
|
||||
#include "support.h"
|
||||
|
||||
#define CSYNC_TEST 1
|
||||
#include "csync_journal.c"
|
||||
#include "csync_statedb.c"
|
||||
|
||||
CSYNC *csync;
|
||||
const char *testdb = (char *) "/tmp/check_csync1/test.db";
|
@ -5,7 +5,7 @@
|
||||
#include "support.h"
|
||||
|
||||
#define CSYNC_TEST 1
|
||||
#include "csync_journal.c"
|
||||
#include "csync_statedb.c"
|
||||
|
||||
CSYNC *csync;
|
||||
const char *testdb = (char *) "/tmp/check_csync1/test.db";
|
Loading…
Reference in New Issue
Block a user