[libcxx-commits] [PATCH] D69195: [libcxx] Fix .gitignore to not exclude test directories

Shoaib Meenai via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Fri Oct 18 14:14:03 PDT 2019


smeenai created this revision.
smeenai added reviewers: EricWF, ldionne, mclow.lists.
Herald added subscribers: libcxx-commits, dexonsmith, christof.
Herald added a project: libc++.

We have several test directories whose names end in .spec. Ensure we
don't accidentally ignore them.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D69195

Files:
  libcxx/.gitignore


Index: libcxx/.gitignore
===================================================================
--- libcxx/.gitignore
+++ libcxx/.gitignore
@@ -27,6 +27,9 @@
 #  before PyInstaller builds the exe, so as to inject date/other infos into it.
 *.manifest
 *.spec
+# Don't ignore a directory ending in .spec, since we have several of those in
+# the tests.
+!*.spec/
 
 # Installer logs
 pip-log.txt


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69195.225692.patch
Type: text/x-patch
Size: 392 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20191018/20d969c9/attachment.bin>


More information about the libcxx-commits mailing list