Correct missing function call in unit test.
authorDaniel Benusovich <flyingmonkeys1996@gmail.com>
Mon, 1 Apr 2019 05:50:53 +0000 (22:50 -0700)
committerDaniel Benusovich <flyingmonkeys1996@gmail.com>
Mon, 1 Apr 2019 05:50:53 +0000 (22:50 -0700)
TLB/test/test_pte_entry.py

index 3b1c139226e9c3362c3c9cae3bdf016be7e42192..3bf00fec82ddd2747977035aee30b97a3062123f 100644 (file)
@@ -50,6 +50,8 @@ def check_all(dut, d, a, g, u, xwr, v, asid, pte):
     yield from check_global(dut, g, 0)
     yield from check_user(dut, u, 0)
     yield from check_xwr(dut, xwr, 0)
+    yield from check_asid(dut, asid, 0)
+    yield from check_pte(dut, pte, 0)
     yield from check_valid(dut, v, 0)
 
 def testbench(dut):