From: Daniel Benusovich Date: Sat, 9 Mar 2019 04:03:34 +0000 (-0800) Subject: Correct comments for test_cam_entry X-Git-Tag: div_pipeline~2330 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f14bbdbd3505ff0868ccfb0ef3be36816d6d5849;p=soc.git Correct comments for test_cam_entry --- diff --git a/TLB/test/test_cam_entry.py b/TLB/test/test_cam_entry.py index 68a34c73..f131bce1 100644 --- a/TLB/test/test_cam_entry.py +++ b/TLB/test/test_cam_entry.py @@ -8,7 +8,6 @@ from test_helper import assert_eq, assert_ne, assert_op from CamEntry import CamEntry # This function allows for the easy setting of values to the Cam Entry -# unless the key is incorrect # Arguments: # dut: The CamEntry being tested # c (command): NA (0), Read (1), Write (2), Reserve (3) @@ -46,8 +45,8 @@ def check_match(dut, m, op): # dut: The CamEntry being tested # d (data): The expected data # m (match): The expected match -# d_op (Operation): The operation for the data assertion (0 => ==), (1 => !=) -# m_op (Operation): The operation for the match assertion (0 => ==), (1 => !=) +# d_op (Operation): Operation for the data assertion (0 => ==), (1 => !=) +# m_op (Operation): Operation for the match assertion (0 => ==), (1 => !=) def check_all(dut, d, m, d_op, m_op): yield from check_data(dut, d, d_op) yield from check_match(dut, m, m_op)