Tests: Fix GCC 13.2.0 issues. No functional change.

This commit is contained in:
Wilson Snyder 2024-09-06 22:04:49 -04:00
parent 083fb7e9c2
commit 7eb1b6c32b
2 changed files with 10 additions and 9 deletions

View File

@ -658,7 +658,7 @@ sub new {
pli_flags => ["-I$ENV{VERILATOR_ROOT}/include/vltstd -fPIC -shared"
. (($^O eq "darwin" )
? " -Wl,-undefined,dynamic_lookup"
: " -export-dynamic")
: " -rdynamic")
. ($opt_verbose ? " -DTEST_VERBOSE=1" : "")
. " -o $self->{obj_dir}/libvpi.so"],
tool_c_flags => [],

View File

@ -12,13 +12,14 @@
#include VM_PREFIX_INCLUDE
int main(int argc, char** argv) {
VerilatedContext ctx;
VerilatedVcdC tfp;
Vt_trace_open_wrong_order_bad dut;
ctx.traceEverOn(true);
tfp.open(VL_STRINGIFY(TEST_OBJ_DIR) "/dump.vcd"); // Error! shall put to the next line!
dut.trace(&tfp, 99); // Error!
tfp.dump(0);
tfp.close();
std::unique_ptr<VerilatedContext> contextp{new VerilatedContext};
std::unique_ptr<VerilatedVcdC> tfp{new VerilatedVcdC};
std::unique_ptr<VM_PREFIX> top{new VM_PREFIX{contextp.get(), "top"}};
contextp->traceEverOn(true);
tfp->open(VL_STRINGIFY(TEST_OBJ_DIR) "/dump.vcd"); // Error! shall put to the next line!
top->trace(tfp.get(), 99); // Error!
tfp->dump(0);
tfp->close();
return 0;
}