chiark / gitweb /
@@@ more mess
[mLib] / test / example / testex.in
1 ;;; -*-conf-windows-*-
2
3 ;;;--------------------------------------------------------------------------
4 [add]
5
6 x = 1
7 y = 2
8 z = 3
9
10 x = 2
11 y = 3
12 z = 5
13
14 ;;;--------------------------------------------------------------------------
15 [greet]
16
17 name = world
18 sz = 14
19 msg = Hello, world!
20 rc = 0
21
22 name = world
23 sz = 13
24 msg *
25 rc = -1
26
27 name = "embedded\0nul"
28 sz = 32
29 msg = Hello, embedded!
30 rc = 0
31 @outcome = xfail
32 ;; doesn't correctly handle names with embedded NUL characters.
33
34 ;;;----- That's all, folks --------------------------------------------------