[llvm-dwp] Restructure inputs for test case so they're all grouped together
authorDavid Blaikie <dblaikie@gmail.com>
Mon, 7 Dec 2015 18:46:41 +0000 (18:46 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Mon, 7 Dec 2015 18:46:41 +0000 (18:46 +0000)
llvm-svn: 254922

llvm/test/tools/llvm-dwp/Inputs/simple/notypes/a.dwo [moved from llvm/test/tools/llvm-dwp/Inputs/simple/a.dwo with 100% similarity]
llvm/test/tools/llvm-dwp/Inputs/simple/notypes/b.dwo [moved from llvm/test/tools/llvm-dwp/Inputs/simple/b.dwo with 100% similarity]
llvm/test/tools/llvm-dwp/Inputs/simple/types/a.dwo [moved from llvm/test/tools/llvm-dwp/Inputs/type_units/a.dwo with 100% similarity]
llvm/test/tools/llvm-dwp/Inputs/simple/types/b.dwo [moved from llvm/test/tools/llvm-dwp/Inputs/type_units/b.dwo with 100% similarity]
llvm/test/tools/llvm-dwp/X86/simple.test

index 962e270..d7365c8 100644 (file)
@@ -1,7 +1,7 @@
-RUN: llvm-dwp %p/../Inputs/simple/a.dwo %p/../Inputs/simple/b.dwo -o %t
+RUN: llvm-dwp %p/../Inputs/simple/notypes/a.dwo %p/../Inputs/simple/notypes/b.dwo -o %t
 RUN: llvm-dwarfdump %t | FileCheck --check-prefix=CHECK --check-prefix=NOTYP %s
 RUN: llvm-objdump -h %t | FileCheck --check-prefix=NOTYPOBJ %s
-RUN: llvm-dwp %p/../Inputs/type_units/a.dwo %p/../Inputs/type_units/b.dwo -o %t
+RUN: llvm-dwp %p/../Inputs/simple/types/a.dwo %p/../Inputs/simple/types/b.dwo -o %t
 RUN: llvm-dwarfdump %t | FileCheck --check-prefix=CHECK --check-prefix=TYPES %s
 
 FIXME: For some reason, piping straight from llvm-dwp to llvm-dwarfdump doesn't behave well - looks like dwarfdump is reading/closes before dwp has finished.