================
@@ -0,0 +1,12 @@
+import unittest
+import re
+from clang.cindex import Config
+
+
+class TestClangVersion(unittest.TestCase):
+ def test_get_version_format(self):
+ conf = Config()
+ version = conf.get_version()
+
+ self.assertTrue(version.startswith("clang version"))
----------------
Endilll wrote:
I think this assert is subsumed by the next one
https://github.com/llvm/llvm-project/pull/86931
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits