Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the ability to tesh to mess with the processes' environment
[simgrid.git] / tools / tesh / README.tesh
1 This is the TESH tool. It constitutes a testing shell, ie a sort of shell
2 specialized to run tests. The list of actions to take is parsed from files
3 files called testsuite. 
4
5 Testsuites syntax
6 -----------------
7 Here is the syntax of these files:
8
9 The kind of each line is given by the first char (the second char should be
10 blank and is ignored):
11  
12  `$' command to run in forground
13  `&' command to run in background
14  `<' input to pass to the command
15  `>' output expected from the command
16  `!' metacommand, which can be one of:
17      `timeout' <integer>|no
18      `expect signal' <signal name>
19      `expect return' <integer>
20      `output' <ignore|display>
21      `setenv <key>=<val>'
22  `p' a string to print
23  `P' a string to print at the CRITICAL level (ease logging grepping)
24
25 If the expected output do not match what the command spits, TESH will produce
26 an error showing the diff (see OUTPUT below).
27
28 IO orders
29 ---------
30
31 The < and > lines add IO to the command defined in the current block (blocks
32 are separated by blank lines). It is possible to place these lines either after
33 the command or before. The difference between the two following chunks is
34 mainly cosmetic in your testsuites, TESH don't care. (cf IO-orders.tesh)
35
36  $ cat
37  < TOTO
38  > TOTO
39
40  > TOTO
41  $ cat
42  < TOTO
43
44 Nevertheless, it is possible to have several commands in the same block, but
45 none of them can have any output. It may seem a bit restrictive, as one could
46 say that a command gets all the IO until the next command, but I'm afraid of
47 errors such as the following:
48
49  $ cd toto
50  > TOTO
51  $ cat > file
52
53 TOTO will be passed to the cd command, where the user clearly want to pass it
54 to cat.
55
56 RETURN CODE
57 -----------
58
59 TESH spits an appropriate error message when the child do not return 0 as
60 return code (cf. catch-return.tesh), and returns code+40 itself.
61
62 It is also possible to specify that a given command must return another
63 value. For this, use the "expect return" metacommand, which takes an integer as
64 argument. The change only apply to the next command (cf. set-return.tesh).
65
66 SIGNALS
67 -------
68
69 TESH detects when the child is killed by a signal (like on segfaults), and
70 spits an appropriate error message (cf. catch-signal.tesh).
71
72 It is also possible to specify that a given command must raise a given
73 signal. For this, use the "expect signal" metacommand. It takes the signal name
74 as argument. The change only apply to the next command (cf. set-signal.tesh).
75  
76 TIMEOUTS
77 --------
78
79 By default, all commands are given 5 seconds to execute
80 (cf. catch-timeout.tesh). You can change this with the "timeout", which
81 takes an integer as argument. The change only apply to the next command
82 (cf. set-timeout.tesh). If you pass "no" as argument, the command
83 cannot timeout.
84
85 OUTPUT
86 ------
87
88 By default, the commands output is matched against the one expected,
89 and an error is raised on discrepency. Metacomands to change this:
90  "output ignore"  -> output completely discarded 
91  "output display" -> output displayed (but not verified)
92  
93 ENVIRONMENT
94 -----------
95 You can add some content to the tested processes environment with the
96 setenv metacommand. It works as expected. For example:
97   "setenv PATH=/bin"