summaryrefslogtreecommitdiffstats
path: root/src/tests/filesys/extended/grow-two-files-persistence.ck
blob: 1c4ced18ee018afc22716cea279fa8c5aec375f2 (plain) (blame)
1
2
3
4
5
6
7
8
9
# -*- perl -*-
use strict;
use warnings;
use tests::tests;
use tests::random;
my ($a) = random_bytes (8143);
my ($b) = random_bytes (8143);
check_archive ({"a" => [$a], "b" => [$b]});
pass;