summaryrefslogtreecommitdiff
path: root/libarchive/test/test_entry.c
diff options
context:
space:
mode:
authorMartin Matuska <martin@matuska.org>2019-03-12 23:11:45 +0100
committerMartin Matuska <martin@matuska.org>2019-03-13 01:18:37 +0100
commitff1915ae1d2f0c1a3b9428cf6d50daee2d3e0f30 (patch)
treee025fb4b981b30e79c3ebcccde4a557362d28449 /libarchive/test/test_entry.c
parent19575940a666e7399061547241d5d960ce98b72e (diff)
downloadlibarchive-ff1915ae1d2f0c1a3b9428cf6d50daee2d3e0f30.tar.gz
Improve and document file flag and file attribute support
Removed read-only FreeBSD fflags: snapshot Removed read-only Linux file attributes: FS_BTREE_FL, FS_ECOMPR_FL, FS_DIRTY_FL, FS_COMPRBLK_FL, FS_INDEX_FL, FS_IMAGIC_FL, FS_ENCRYPT_FL, FS_HUGE_FILE_FL, FS_EA_INODE_FL, FS_EOFBLOCKS_FL, FS_INLINE_DATA_FL Add missing FreeBSD fflags: uarch, offline, rdonly, sparse, reparse, system Document in code supported file flags and their mapping
Diffstat (limited to 'libarchive/test/test_entry.c')
-rw-r--r--libarchive/test/test_entry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libarchive/test/test_entry.c b/libarchive/test/test_entry.c
index 0ccc9e8f..a0a2607a 100644
--- a/libarchive/test/test_entry.c
+++ b/libarchive/test/test_entry.c
@@ -336,7 +336,7 @@ DEFINE_TEST(test_entry)
/* Converting fflags bitmap to string is currently system-dependent. */
/* TODO: Make this system-independent. */
assertEqualString(archive_entry_fflags_text(e),
- "uappnd,nouchg,nodump,noopaque,uunlnk");
+ "uappnd,nouchg,nodump,noopaque,uunlnk,nosystem");
/* Test archive_entry_copy_fflags_text_w() */
archive_entry_copy_fflags_text_w(e, L" ,nouappnd, nouchg, dump,uunlnk");
archive_entry_fflags(e, &set, &clear);