[Lldb-commits] [lldb] r333701 - [lit] Remove the *.test suffix from two test inputs

Vedant Kumar via lldb-commits lldb-commits at lists.llvm.org
Thu May 31 15:09:01 PDT 2018


Author: vedantk
Date: Thu May 31 15:09:01 2018
New Revision: 333701

URL: http://llvm.org/viewvc/llvm-project?rev=333701&view=rev
Log:
[lit] Remove the *.test suffix from two test inputs

This prevents the test inputs from being marked as unsupported tests,
due to their lack of RUN lines.

Added:
    lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic
      - copied, changed from r333700, lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test
    lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1
      - copied, changed from r333700, lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test
Removed:
    lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test
    lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test
Modified:
    lldb/trunk/lit/Expr/TestIRMemoryMap.test

Copied: lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic (from r333700, lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic?p2=lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic&p1=lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test&r1=333700&r2=333701&rev=333701&view=diff
==============================================================================
    (empty)

Removed: lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test?rev=333700&view=auto
==============================================================================
--- lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test (original)
+++ lldb/trunk/lit/Expr/Inputs/ir-memory-map-basic.test (removed)
@@ -1,25 +0,0 @@
-malloc 0 1
-malloc 1 1
-
-malloc 2 1
-malloc 2 2
-malloc 2 4
-
-malloc 3 1
-malloc 3 2
-malloc 3 4
-
-malloc 128 1
-malloc 128 2
-malloc 128 4
-malloc 128 128
-
-malloc 2048 1
-malloc 2048 2
-malloc 2048 4
-
-malloc 3968 1
-malloc 3968 2
-malloc 3968 4
-
-malloc 0 1

Copied: lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1 (from r333700, lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test)
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1?p2=lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1&p1=lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test&r1=333700&r2=333701&rev=333701&view=diff
==============================================================================
    (empty)

Removed: lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test?rev=333700&view=auto
==============================================================================
--- lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test (original)
+++ lldb/trunk/lit/Expr/Inputs/ir-memory-map-overlap1.test (removed)
@@ -1,10 +0,0 @@
-malloc 8 16
-malloc 16 8
-malloc 64 32
-malloc 1 8
-malloc 64 32
-malloc 64 8
-malloc 1024 32
-malloc 1 16
-malloc 8 16
-malloc 1024 16
\ No newline at end of file

Modified: lldb/trunk/lit/Expr/TestIRMemoryMap.test
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/lit/Expr/TestIRMemoryMap.test?rev=333701&r1=333700&r2=333701&view=diff
==============================================================================
--- lldb/trunk/lit/Expr/TestIRMemoryMap.test (original)
+++ lldb/trunk/lit/Expr/TestIRMemoryMap.test Thu May 31 15:09:01 2018
@@ -1,10 +1,10 @@
 # RUN: %cxx %p/Inputs/call-function.cpp -g -o %t
 
-# RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-basic.test
-# RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-basic.test
+# RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-basic
+# RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-basic
 
-# RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-overlap1.test
-# RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-overlap1.test
+# RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-overlap1
+# RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-overlap1
 
 # RUN: lldb-test ir-memory-map %t %S/Inputs/ir-memory-map-mix-malloc-free
 # RUN: lldb-test ir-memory-map -host-only %t %S/Inputs/ir-memory-map-mix-malloc-free




More information about the lldb-commits mailing list