Dump graph test

Signed-off-by: Bartłomiej Chmiel <bchmiel@antmicro.com>
This commit is contained in:
Bartłomiej Chmiel 2025-11-06 10:48:19 +01:00
parent 3104f89665
commit b0d5c85c06
No known key found for this signature in database
GPG Key ID: AF7A8DBF070764A4
2 changed files with 1 additions and 3 deletions

View File

@ -48,7 +48,6 @@ public:
explicit DfaVertex(V3Graph* graphp, AstNode* nodep) VL_MT_DISABLED : V3GraphVertex{graphp},
m_nodep{nodep} {}
AstNode* nodep() const { return m_nodep; }
// LCOV_EXCL_START // Debug code
string name() const override VL_MT_STABLE {
return cvtToHex(m_nodep) + "\\n " + cvtToStr(m_nodep->typeName()) + "\\n"s
+ m_nodep->fileline()->ascii();
@ -58,7 +57,6 @@ public:
if (outEmpty()) return "doubleoctagon";
return "oval";
}
// LCOV_EXCL_STOP
bool isStart() const { return inEmpty(); }
};

View File

@ -11,7 +11,7 @@ import vltest_bootstrap
test.scenarios('simulator')
test.compile(timing_loop=True, verilator_flags2=['--assert', '--timing'])
test.compile(timing_loop=True, verilator_flags2=['--assert', '--timing', '--dumpi-V3AssertProp 6'])
test.execute()