blob: 65ed38cafd2db3417f76b3901c9ec24a011dd237 (
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
|
$ORIGIN .
$TTL 1
; OK
0. NS @
$INCLUDE ./includes/include1 ; Relative path without origin
1. NS @
$INCLUDE "./includes/include2" . ; Quoted filename and the simplest origin
2. NS @
$INCLUDE ./includes/include\050 tld. ; Simple origin
3. NS @
$INCLUDE \./includes/include2 _a_.-b-c-./d/. ; Slashed character in file name, allowed characters in origin
4. NS @
$INCLUDE ./includes/include2 \0320\ \\\"\.\@\*.tld. ; Origin with special chars
5. NS @
$INCLUDE /home/ondrej/Projects/knot/build/src/zscanner/test/cases/includes/include2 ; Absolute path without origin
6. NS @
$INCLUDE /home/ondrej/Projects/knot/build/src/zscanner/test/cases/includes/include2 tld. ; Absolute path with origin
7. NS @
; KO
$INCLUDE ; Empty parameters
|