Separate persistence tests from the extended filesys tests.
[pintos-anon] / src / tests / filesys / extended / dir-mk-tree-persistence.ck
1 # -*- perl -*-
2 use strict;
3 use warnings;
4 use tests::tests;
5 my ($tree);
6 for my $a (0...3) {
7     for my $b (0...2) {
8         for my $c (0...2) {
9             for my $d (0...3) {
10                 $tree->{$a}{$b}{$c}{$d} = [''];
11             }
12         }
13     }
14 }
15 check_archive ($tree);
16 pass;