Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChristian Kamm <kamm@incasoftware.de>2014-09-05 15:03:33 +0400
committerChristian Kamm <kamm@incasoftware.de>2014-10-29 11:53:36 +0300
commit4e20a02fe5131ddc8376be8c48cb7f843e158363 (patch)
treeaa7e6f3f8e1857977ebb37bb075a82b9e3be7827 /test
parentdc1e73dcb7145c59c455c612e3769cc2412e67fe (diff)
SyncJournalDB: Add filesize column to metadata.
* Alter table to include column. * Make get/set in SyncJournalDB store and load it. * Make csync recover the stat_t's size member from it.
Diffstat (limited to 'test')
-rw-r--r--test/testsyncjournaldb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/testsyncjournaldb.h b/test/testsyncjournaldb.h
index c36679c66..fbf701f10 100644
--- a/test/testsyncjournaldb.h
+++ b/test/testsyncjournaldb.h
@@ -59,6 +59,7 @@ private slots:
record._fileId = "abcd";
record._remotePerm = "744";
record._mode = -17;
+ record._fileSize = 213089055;
QVERIFY(_db.setFileRecord(record));
SyncJournalFileRecord storedRecord = _db.getFileRecord("foo");