diff options
Diffstat (limited to 'make/scripts/count-edt-start.sh')
-rwxr-xr-x | make/scripts/count-edt-start.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/make/scripts/count-edt-start.sh b/make/scripts/count-edt-start.sh new file mode 100755 index 000000000..06af8c396 --- /dev/null +++ b/make/scripts/count-edt-start.sh @@ -0,0 +1,11 @@ +#! /bin/sh + +echo EDT START +grep "EDT run() START" $1 | wc + +echo EDT END +grep "EDT run() END" $1 | wc + +echo EDT EXIT +grep "EDT run() EXIT" $1 | wc + |