blob: 42dc1fa8a089ce1a7c1fe84efb6b629991b1a982 (
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-2016 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"
|