diff options
author | Karel Kočí <cynerd@email.cz> | 2015-08-19 10:48:38 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2015-08-19 10:57:51 +0200 |
commit | 7fa6491548e72abef25db015714af6fa9c18ad35 (patch) | |
tree | 648271ceb7882ca9db646619b7673b587cd98fb3 | |
parent | d749e192142dcc82fe6fab481d9459e59b607792 (diff) | |
download | linux-conf-perf-7fa6491548e72abef25db015714af6fa9c18ad35.tar.gz linux-conf-perf-7fa6491548e72abef25db015714af6fa9c18ad35.tar.bz2 linux-conf-perf-7fa6491548e72abef25db015714af6fa9c18ad35.zip |
Fix boot output parse script
-rwxr-xr-x | tests/cyclictest/parse | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cyclictest/parse b/tests/cyclictest/parse index 64a6fef..e83090a 100755 --- a/tests/cyclictest/parse +++ b/tests/cyclictest/parse @@ -1,3 +1,3 @@ #!/bin/bash -grep -e "^! .* ok" | sed -n '2p' | awk '{print $17}' +cat | grep -e "^! .* ok$" | sed -n '2p' | awk '{print $17}' |