[lit] Remove --repeat option, which wasn't that useful.
[oota-llvm.git] / utils / lit / lit / Test.py
index 9471e3a98bf5224de99809df71c8ef7b1f4b0ea2..cf12425902f6897d54f8f030ddc812848f25d372 100644 (file)
@@ -58,14 +58,6 @@ class Test:
         self.output = None
         # The wall time to execute this test, if timing and once complete.
         self.elapsed = None
-        # The repeat index of this test, or None.
-        self.index = None
-
-    def copyWithIndex(self, index):
-        import copy
-        res = copy.copy(self)
-        res.index = index
-        return res
 
     def setResult(self, result, output, elapsed):
         assert self.result is None, "Test result already set!"