[libcxx-commits] [libcxx] [libc++] Remove nonexistent directory from check-generated-output (PR #111746)

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Wed Oct 9 12:09:43 PDT 2024


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

The libcxx/benchmarks directory was moved to libcxx/test/benchmarks, which is already checked by that grep command.

>From b4e7c415b46011cc43042985f888e4479aedd1f1 Mon Sep 17 00:00:00 2001
From: Louis Dionne <ldionne.2 at gmail.com>
Date: Wed, 9 Oct 2024 15:08:27 -0400
Subject: [PATCH] [libc++] Remove nonexistent directory from
 check-generated-output

The libcxx/benchmarks directory was moved to libcxx/test/benchmarks,
which is already checked by that grep command.
---
 libcxx/utils/ci/run-buildbot | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 536d6270361307..0ce1def5f37224 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -238,7 +238,7 @@ check-generated-output)
     # Reject patches that introduce non-ASCII characters or hard tabs.
     # Depends on LC_COLLATE set at the top of this script.
     set -x
-    ! grep -rn '[^ -~]' libcxx/include libcxx/src libcxx/test libcxx/benchmarks \
+    ! grep -rn '[^ -~]' libcxx/include libcxx/src libcxx/test \
            --exclude '*.dat' \
            --exclude '*unicode*.cpp' \
            --exclude '*print*.sh.cpp' \



More information about the libcxx-commits mailing list