[libcxx-commits] [libcxx] [libc++] Remove leftover .fail.cpp matcher in Lit test format (PR #83583)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Fri Mar 1 07:30:00 PST 2024


https://github.com/ldionne created https://github.com/llvm/llvm-project/pull/83583

This should have been removed in 8dcb8ea75cef, which removed support for .fail.cpp tests in the libc++ test suite.

>From 90a321a5b27cf9fb02a4fb7713adf4ec60468237 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Fri, 1 Mar 2024 10:29:02 -0500
Subject: [PATCH] [libc++] Remove leftover .fail.cpp matcher in Lit test format

This should have been removed in 8dcb8ea75cef, which removed support
for .fail.cpp tests in the libc++ test suite.
---
 libcxx/utils/libcxx/test/format.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libcxx/utils/libcxx/test/format.py b/libcxx/utils/libcxx/test/format.py
index 229da224994f43..7e5281c0b74064 100644
--- a/libcxx/utils/libcxx/test/format.py
+++ b/libcxx/utils/libcxx/test/format.py
@@ -265,7 +265,6 @@ def getTestsForPath(self, testSuite, pathInSuite, litConfig, localConfig):
             "[.]sh[.][^.]+$",
             "[.]gen[.][^.]+$",
             "[.]verify[.]cpp$",
-            "[.]fail[.]cpp$",
         ]
 
         sourcePath = testSuite.getSourcePath(pathInSuite)



More information about the libcxx-commits mailing list