[PATCH] D66176: Fix Driver/modules.cpp test to work when build directory name contains '.s'
Tom Stellard via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Aug 13 15:17:51 PDT 2019
tstellar created this revision.
tstellar added reviewers: dyung, rsmith, hansw.
Herald added a project: clang.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D66176
Files:
clang/test/Driver/modules.cpp
Index: clang/test/Driver/modules.cpp
===================================================================
--- clang/test/Driver/modules.cpp
+++ clang/test/Driver/modules.cpp
@@ -15,7 +15,8 @@
// RUN: %clang -std=c++2a %t/module.pcm -S -o %t/module.pcm.o -v 2>&1 | FileCheck %s --check-prefix=CHECK-COMPILE
//
// CHECK-COMPILE: -cc1 {{.*}} {{-emit-obj|-S}}
-// CHECK-COMPILE-SAME: -o {{.*}}.{{pcm.o|s}}
+// Check for extra space to avoid failures when the build directory contains '.s' in its path.
+// CHECK-COMPILE-SAME: -o {{.*}}.{{pcm.o|s}}{{ }}
// CHECK-COMPILE-SAME: -x pcm
// CHECK-COMPILE-SAME: {{.*}}.pcm
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66176.214941.patch
Type: text/x-patch
Size: 619 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190813/c91ec58e/attachment.bin>
More information about the cfe-commits
mailing list