Skip to content

Commit

Permalink
i#1569 AArch64: Make drcachesim template looser.
Browse files Browse the repository at this point in the history
On one AArch64 system drcachesim.simple gave "Child hits" around
91,850-91,870 and a "Total miss rate" around 2.19% while the regular
expression expected a 6-digit number and less than 2%, respectively.
Adjust the regular expression to allow 30,000-999,999 and 0-3.99%.

Review-URL: https://codereview.appspot.com/310860043
  • Loading branch information
egrimley-arm committed Sep 16, 2016
1 parent fcd2c4a commit 6819e3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/drcachesim/tests/drcachesim-simple.templatex
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ LL stats:
Hits: [0-9]..
Misses: *[0-9]*[,\.]?...
.* Local miss rate: [0-9].[,\.]..%
Child hits: *[0-9]..[,\.]?...
Total miss rate: [0-1][,\.]..%
Child hits: *([3-9]|[1-9].).[,\.]?...
Total miss rate: [0-3][,\.]..%

0 comments on commit 6819e3f

Please sign in to comment.