From 7eb1b6c32ba521352175476dd321032b2b84f76d Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 6 Sep 2024 22:04:49 -0400 Subject: [PATCH] Tests: Fix GCC 13.2.0 issues. No functional change. --- test_regress/driver.pl | 2 +- test_regress/t/t_trace_open_wrong_order_bad.cpp | 17 +++++++++-------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/test_regress/driver.pl b/test_regress/driver.pl index b86be1922..d122114c9 100755 --- a/test_regress/driver.pl +++ b/test_regress/driver.pl @@ -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 => [], diff --git a/test_regress/t/t_trace_open_wrong_order_bad.cpp b/test_regress/t/t_trace_open_wrong_order_bad.cpp index fa899b799..2a8f4cad9 100644 --- a/test_regress/t/t_trace_open_wrong_order_bad.cpp +++ b/test_regress/t/t_trace_open_wrong_order_bad.cpp @@ -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 contextp{new VerilatedContext}; + std::unique_ptr tfp{new VerilatedVcdC}; + std::unique_ptr 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; }