summaryrefslogtreecommitdiffstats
path: root/src/tests/filesys/extended/dir-rm-parent.ck
blob: 9fea8f23c79348a51c8804b2d582a79619f56257 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- perl -*-
use strict;
use warnings;
use tests::tests;
check_expected (IGNORE_EXIT_CODES => 1, [<<'EOF']);
(dir-rm-parent) begin
(dir-rm-parent) mkdir "a"
(dir-rm-parent) chdir "a"
(dir-rm-parent) mkdir "b"
(dir-rm-parent) chdir "b"
(dir-rm-parent) remove "/a" (must fail)
(dir-rm-parent) end
EOF
pass;