Lines Matching +full:- +full:- +full:retry
33 # -------------------------------------------------------------------------------------------------…
38 # query retry and snoop optimization.
40 test_name = __file__[:-3] if __file__.endswith('.py') else __file__
41 print('-' * 120)
44 # -------------------------------------------------------------------------------------------------…
57 # -------------------------------------------------------------------------------------------------…
62 # -------------------------------------------------------------------------------------------------…
65 # r3 ---- r1 ---- r2
99 # -------------------------------------------------------------------------------------------------…
119 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -…
149 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -…
151 # Check the retry-query behavior
153 # Wait till all the address queries time out and verify they enter "retry-query" state.
165 # Try sending again to same addresses which are in "retry-delay" state.
172 # Make sure the entries stayed in retry-delay as before.
209 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -…
223 # Also verify that only MAX_SNOOPED_NON_EVICTABLE of snooped entries are non-evictable.
228 verify(cache_table[index].address == PREFIX + "2:" + str(NUM_ADDRESSES - index - 1))
231 if index < NUM_ADDRESSES - MAX_SNOOPED_NON_EVICTABLE:
254 verify(cache_table[index].address == PREFIX + "2:" + str(NUM_ADDRESSES - index - 1))
258 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -…
277 verify(cache_table[index].address == PREFIX + "3:" + str(NUM_ADDRESSES - index - 1))
296 verify(cache_table[index].address == PREFIX + "c3:" + str(NUM_ADDRESSES - index - 1))
299 # SED's keep-alive period (`POLL_PERIOD`) is 200ms, `last_trans` should always be 0 as it is
300 # the number of seconds since a keep-alive was last received from the child.
315 verify(cache_table[index].address == PREFIX + "2:" + str(NUM_ADDRESSES - index - 1))
319 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -…
374 verify(cache_table[index].address == PREFIX + "c2:" + str(NUM_ADDRESSES - index - 1))
378 # -------------------------------------------------------------------------------------------------…