aboutsummaryrefslogtreecommitdiff
path: root/tests/test/script/builtin/touch.test
blob: ef950ea0000013e069d63470bc1b1ca6e1d77be3 (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
# file      : tests/test/script/runner/touch.test
# copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

: file
:
touch a

: file-create
:
: Test that file is created. If it didn't then 'rm' would fail.
:
touch a &!a;
rm a

: file-update
:
: Test that existing file touch doesn't fail.
:
cat <"" >>>a;
touch a

# @@ How we can test that touch of an existing file doesn't register a cleanup?
#

: no-args
:
: Test passing no arguments.
:
touch 2>"touch: missing file" == 1

: empty-path
:
: Test touching an empty path.
:
touch '' 2>"touch: invalid path ''" == 1

: dir-update
:
: Test touching an existing directory.
:
a = $~;
a += "a";
mkdir a;
touch 2>"touch: '$a' exists and is not a file" a == 1