aboutsummaryrefslogtreecommitdiff
path: root/tests/name/extension.test
blob: e97d0ab126e9daa63d457de5013c659e2b4060e5 (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
# file      : tests/name/extension.test
# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
# license   : MIT; see accompanying LICENSE file

test.arguments = --match-only update

.include ../common.test

+cat <<EOI >=build/root.build
define txt: file
txt{*}: extension = txt
EOI

: unspecified
:
touch foo.txt;
$* <'./: txt{foo}'

: specified
:
touch foo.text;
$* <'./: txt{foo.text}'

: specified-none
:
touch foo;
$* <'./: txt{foo.}'

: specified-default
:
touch foo.test.txt;
$* <'./: txt{foo.test...}'

: specified-escape-one
:
touch foo.;
$* <'./: txt{foo..}'

: specified-escape-two
:
touch foo..;
$* <'./: txt{foo....}'

: specified-invalid
:
$* <'./: txt{foo.....}' 2>>EOE != 0
<stdin>:1:5: error: invalid trailing dot sequence in target name 'foo.....'
EOE