-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester.sh
executable file
·63 lines (62 loc) · 1.9 KB
/
tester.sh
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash
rm -rf /tmp/.tester.* /tmp/.runner.* /tmp/.refer.* /tmp/.shell.* /tmp/test*
echo "Tests for PARSING :"
echo "tests/test_files/parsing.ini" > tests/file
tests/tester.sh
echo "Tests for CD :"
echo "tests/test_files/cd.ini" > tests/file
tests/tester.sh
echo "Tests for ENV :"
echo "tests/test_files/environnement.ini" > tests/file
tests/tester.sh
echo "Tests for EXIT :"
echo "tests/test_files/exit.ini" > tests/file
tests/tester.sh
echo "Tests for COMMANDS :"
echo "tests/test_files/commands.ini" > tests/file
tests/tester.sh
echo "Tests for BACKTICKS :"
echo "tests/test_files/backticks.ini" > tests/file
tests/tester.sh
echo "Tests for MULTI COMMANDS :"
echo "tests/test_files/multi_commands.ini" > tests/file
tests/tester.sh
echo "Tests for OPERATORS :"
echo "tests/test_files/operators.ini" > tests/file
tests/tester.sh
echo "Tests for PIPES :"
echo "tests/test_files/pipes.ini" > tests/file
tests/tester.sh
echo "Tests for REDIRECTIONS :"
echo "tests/test_files/redirections.ini" > tests/file
tests/tester.sh
echo "Tests for parentheses :"
echo "tests/test_files/parentheses.ini" > tests/file
tests/tester.sh
echo "Tests for INHIBITORS :"
echo "tests/test_files/inhibitors.ini" > tests/file
tests/tester.sh
echo "Tests for GLOBBING :"
echo "tests/test_files/globbing.ini" > tests/file
tests/tester.sh
echo "Tests for ALIAS :"
echo "tests/test_files/alias.ini" > tests/file
tests/tester.sh
echo "Tests for WHERE :"
echo "tests/test_files/where.ini" > tests/file
tests/tester.sh
echo "Tests for WHICH :"
echo "tests/test_files/which.ini" > tests/file
tests/tester.sh
echo "Tests for REPEAT :"
echo "tests/test_files/repeat.ini" > tests/file
tests/tester.sh
echo "Tests for SCRIPTING :"
echo "tests/test_files/scripting.ini" > tests/file
tests/tester.sh
echo "Tests for VARIABLES :"
echo "tests/test_files/variables.ini" > tests/file
tests/tester.sh
echo "Tests for OTHER :"
echo "tests/test_files/other.ini" > tests/file
tests/tester.sh