blob: 5351bef969dd1f5dff1bb8e003837118e0a0b563 (
plain) (
blame)
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
|
mkdir -p out
echo "
LogIntModFilter
SleepCheck
MultipleActionsCheck
KillCheck
InMemoryLog
InMemoryLogCheck
NoExec
Log
LogTs
FalseIntFilter
LogIntAfterFilter
LogInt
FalseStringFilter
FalseStringFilterPartialMatch
LogStringAfterFilter
LogString
LogCheck
" | awk NF | ( while read l; do ./tests --unsafe-lwtrace 1 $l > out/out_$l.txt 2>out/err_$l.txt && echo done $l & done ; wait )
grep . out/out_*.txt
grep . out/err_*.txt --color=always
|