[clang] [analyzer] Fix stale z3 analyzer-constraints name in test z3-logicalexpr-eval.c (PR #209185)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Jul 13 06:56:21 PDT 2026
https://github.com/rdevshp created https://github.com/llvm/llvm-project/pull/209185
z3 was recently renamed to unsupported-z3.
Change the analyzer-constraints to unsupported-z3 in the test file z3-logicalexpr-eval.c
>From 4e6defc43ae9b8158a401fa3138e92821fe389a0 Mon Sep 17 00:00:00 2001
From: rdevshp <rdevshp at gmail.com>
Date: Mon, 13 Jul 2026 13:54:02 +0000
Subject: [PATCH] [analyzer] Fix stale z3 analyzer-constraints name in test
z3-logicalexpr-eval.c
z3 was recently renamed to unsupported-z3.
Change the analyzer-constraints to unsupported-z3 in
the test file z3-logicalexpr-eval.c
---
clang/test/Analysis/z3/z3-logicalexpr-eval.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/clang/test/Analysis/z3/z3-logicalexpr-eval.c b/clang/test/Analysis/z3/z3-logicalexpr-eval.c
index 2f2fb2e94b7d5..3f21d08bd98b8 100644
--- a/clang/test/Analysis/z3/z3-logicalexpr-eval.c
+++ b/clang/test/Analysis/z3/z3-logicalexpr-eval.c
@@ -1,5 +1,5 @@
// RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection \
-// RUN: -analyzer-constraints=z3 -verify %s
+// RUN: -analyzer-constraints=unsupported-z3 -verify %s
// REQUIRES: z3
void clang_analyzer_eval(int);
More information about the cfe-commits
mailing list