diff options
author | Antonio Russo <[email protected]> | 2018-04-30 13:45:47 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-04-30 12:45:47 -0500 |
commit | c83ccb3e72934ea1787cf7ddb0a9960eded82d0e (patch) | |
tree | 0d42b537b48de2d4ab25a6d21702e5ad57048c95 /tests/runfiles | |
parent | 964c2d69a90c503f44946f31c5d4a8ac4458176d (diff) |
Add test with two kinds of file creation orders
Data loss was identified in #7401 when many small files were copied.
This adds a reproducer for this bug and other similar ones: randomly
generate N files. Then, listing M of them by `ls -U` order, produce
those same files in a directory of the same name.
This triggers the bug consistently, provided N and M are large enough.
Here, N=2^16 and M=2^13.
Reviewed-by: Tony Hutter <[email protected]>
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Antonio Russo <[email protected]>
Closes #7411
Diffstat (limited to 'tests/runfiles')
-rw-r--r-- | tests/runfiles/linux.run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runfiles/linux.run b/tests/runfiles/linux.run index cb2c27553..bebb207fc 100644 --- a/tests/runfiles/linux.run +++ b/tests/runfiles/linux.run @@ -600,7 +600,7 @@ tests = ['umount_001', 'umountall_001'] tags = ['functional', 'mount'] [tests/functional/mv_files] -tests = ['mv_files_001_pos', 'mv_files_002_pos'] +tests = ['mv_files_001_pos', 'mv_files_002_pos', 'random_creation'] tags = ['functional', 'mv_files'] [tests/functional/nestedfs] |