aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/builtin/mkdir.test
blob: 6b7b5c99f0af34c363d3ac81823c27d2b7f267e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# file      : tests/test/script/runner/mkdir.test
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

: dirs
:
mkdir a b;
touch a/a b/b

: parent
:
mkdir -p a/b;
touch a/a a/b/b

: exists
:
mkdir -p a a a/b a/b

: double-dash
:
: Make sure '-p' directory is created.
:
mkdir -p -- -p;
touch -p/a

: no-args
:
: Test passing no arguments.
:
mkdir 2>"mkdir: missing directory" == 1

: empty-path
:
: Test creation of empty directory path.
:
mkdir '' 2>"mkdir: invalid path ''" == 1

: already-exists
:
: Test creation of an existing directory. Note that error message is
: platform-dependent so is not checked.
:
mkdir a 2>- a == 1 # @@ REGEX

: not-exists
:
: Test creation of a directory with non-existent parent. Note that error
: message is platform-dependent so is not checked.
:
mkdir a/b 2>- == 1 # @@ REGEX