[PATCH] D34830: [lit, test-suite] Fix a reference to FileBasedTest that I missed earlier.

David L. Jones via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 29 12:34:02 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL306730: [lit, test-suite] Fix a reference to FileBasedTest that I missed earlier. (authored by dlj).

Repository:
  rL LLVM

https://reviews.llvm.org/D34830

Files:
  test-suite/trunk/litsupport/test.py


Index: test-suite/trunk/litsupport/test.py
===================================================================
--- test-suite/trunk/litsupport/test.py
+++ test-suite/trunk/litsupport/test.py
@@ -7,7 +7,7 @@
 import lit.util
 import logging
 import os
-from lit.formats import FileBasedTest
+from lit.formats import ShTest
 from lit.TestRunner import getTempPaths
 from lit import Test
 from lit.util import to_bytes, to_string
@@ -59,7 +59,7 @@
         modules.append(module)
 
 
-class TestSuiteTest(FileBasedTest):
+class TestSuiteTest(ShTest):
     def __init__(self):
         super(TestSuiteTest, self).__init__()
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D34830.104720.patch
Type: text/x-patch
Size: 622 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170629/fbe9aba2/attachment.bin>


More information about the llvm-commits mailing list