From 34620e340b14c8fa0ef2bee1be6c307ee288a8d3 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 7 Aug 2015 08:38:22 +0000 Subject: [PATCH] Tweak llvm/test/tools/dsymutil/arch-option.test to avoid globbing on mingw-w64. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244311 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/tools/dsymutil/arch-option.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/tools/dsymutil/arch-option.test b/test/tools/dsymutil/arch-option.test index 4068bc24c8f..0920efb529d 100644 --- a/test/tools/dsymutil/arch-option.test +++ b/test/tools/dsymutil/arch-option.test @@ -3,7 +3,7 @@ looking at the dumped debug maps is enough to validate their effects. RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib | FileCheck %s -check-prefix=ARM64 -check-prefix=ARMV7S -check-prefix=ARMV7 -check-prefix=CHECK RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch all | FileCheck %s -check-prefix=ARM64 -check-prefix=ARMV7S -check-prefix=ARMV7 -check-prefix=CHECK -RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch '*' | FileCheck %s -check-prefix=ARM64 -check-prefix=ARMV7S -check-prefix=ARMV7 -check-prefix=CHECK +RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch='*' | FileCheck %s -check-prefix=ARM64 -check-prefix=ARMV7S -check-prefix=ARMV7 -check-prefix=CHECK RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm64 | FileCheck %s -check-prefix=ARM64 -check-prefix=CHECK RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch arm | FileCheck %s -check-prefix=ARMV7S -check-prefix=ARMV7 -check-prefix=CHECK RUN: llvm-dsymutil -oso-prepend-path %p -dump-debug-map %p/Inputs/fat-test.arm.dylib -arch armv7 | FileCheck %s -check-prefix=ARMV7 -check-prefix=CHECK -- 2.34.1