From de9671d4a379b3ad45f62c71bfa29c33e4d3d7c3 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Sat, 2 Aug 2025 15:03:09 -0400 Subject: [PATCH] Tests: uvm_regex.cc from upstream has clang warnings --- test_regress/t/t_uvm_dpi.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test_regress/t/t_uvm_dpi.py b/test_regress/t/t_uvm_dpi.py index b4f073231..928c0be47 100755 --- a/test_regress/t/t_uvm_dpi.py +++ b/test_regress/t/t_uvm_dpi.py @@ -12,6 +12,9 @@ import vltest_bootstrap test.scenarios('vlt') test.pli_filename = "t/uvm/dpi/uvm_dpi.cc" +if re.search(r'clang', test.cxx_version): + test.skip("uvm_regex.cc from upstream has clang warnings") + test.compile( verilator_flags2=["--binary", "--build-jobs 4", "--vpi", "+incdir+t/uvm", test.pli_filename])