-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfhtagn.tush
71 lines (64 loc) · 1.34 KB
/
fhtagn.tush
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
64
65
66
67
68
69
70
71
$ cd "$MYDIR"; $FHTAGN -- absent
@ error reading file: absent
? 2
$ cd "$MYDIR"; $FHTAGN -- tests/1.tush
$ cd "$MYDIR"; ./tests/trimBlank.sh $FHTAGN tests/2.tush
| tests/2.tush:12: $ echo "hello world"; echo "error msg" >&2; exit 7
| --- expected
| +++ actual
| @@ -1,4 +1,4 @@
| | hello world
| -@ error msg 444
| -? 8
| +@ error msg
| +? 7
| ---blank---
? 1
$ cd "$MYDIR"; ./tests/trimBlank.sh $FHTAGN tests/3.tush
| tests/3.tush:7: $ echo bbb
| --- expected
| +++ actual
| @@ -1,2 +1,2 @@
| -| BBB
| +| bbb
| ---blank---
? 1
$ cd "$MYDIR"; ./tests/trimBlank.sh $FHTAGN tests/1.tush tests/3.tush
| tests/3.tush:7: $ echo bbb
| --- expected
| +++ actual
| @@ -1,2 +1,2 @@
| -| BBB
| +| bbb
| ---blank---
? 1
$ cd "$MYDIR"; ALL=1 ./tests/trimBlank.sh $FHTAGN tests/1.tush tests/2.tush tests/3.tush
| tests/2.tush:12: $ echo "hello world"; echo "error msg" >&2; exit 7
| --- expected
| +++ actual
| @@ -1,4 +1,4 @@
| | hello world
| -@ error msg 444
| -? 8
| +@ error msg
| +? 7
| ---blank---
| tests/3.tush:7: $ echo bbb
| --- expected
| +++ actual
| @@ -1,2 +1,2 @@
| -| BBB
| +| bbb
| ---blank---
| result=FAIL, failure=2, success=4, total=6, files=3
$ cd "$MYDIR"; ./tests/trimBlank.sh $FHTAGN tests/4-multiline.tush
| tests/4-multiline.tush:25: $ echo 111; \
| echo 222
| --- expected
| +++ actual
| @@ -1,3 +1,3 @@
| | 111
| -| 777
| +| 222
| ---blank---
? 1