Add log for the timer bug

This commit is contained in:
Quentin Dufour 2019-04-03 11:43:01 +02:00
parent 816a770f42
commit 7bede05ed0

View file

@ -192,3 +192,9 @@ Track measures that didn't finish:
```
ls | grep -P '^naive-|^rrh-|^rr-|^orig-' | while read n; do echo -n "$n "; tail -n1 $n/res/*.csv ; done | grep -v "Measurement done"
```
Check if timer's bug occured:
```
ls | grep -P '^naive-|^rrh-|^rr-|^orig-' | while read n; do echo "$n "; grep 'bug' $n/log/client-measlat-stderr.log; done
```