blob: 75a1ca67b7aff0f33682367eac53cb79a5fabe9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# file : tests/dir-iterator/testscript
# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
# license : MIT; see accompanying LICENSE file
test.options = -v
: file
:
mkdir a;
touch a/b;
$* a 2>"reg b"
: dir
:
mkdir -p a/b;
$* a 2>"dir b"
|