mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
Tests: Fix GCC 13.2.0 issues. No functional change.
This commit is contained in:
parent
083fb7e9c2
commit
7eb1b6c32b
@ -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 => [],
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user