[PATCH] D58439: [obj2yaml]Locate tests ending in .yaml

James Henderson via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 20 04:34:26 PST 2019


jhenderson created this revision.
jhenderson added a reviewer: grimar.
Herald added a project: LLVM.

A number of the obj2yaml tests end in .yaml, but .yaml is not a default file type picked up by lit, so these tests weren't being run when running the testsuite as a whole (they could be run explicitly still). This change adds a lit local config file to include .yaml in the list of known file types.


Repository:
  rL LLVM

https://reviews.llvm.org/D58439

Files:
  C:/llvm/llvm/test/tools/obj2yaml/lit.local.cfg


Index: C:/llvm/llvm/test/tools/obj2yaml/lit.local.cfg
===================================================================
--- C:/llvm/llvm/test/tools/obj2yaml/lit.local.cfg
+++ C:/llvm/llvm/test/tools/obj2yaml/lit.local.cfg
@@ -0,0 +1 @@
+config.suffixes = ['.yaml']


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58439.187548.patch
Type: text/x-patch
Size: 267 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190220/3524ed0f/attachment.bin>


More information about the llvm-commits mailing list