Fix failing tests after VCTOOLSDIR change
authorZachary Henkel <zachary.henkel@microsoft.com>
Wed, 26 Aug 2020 14:30:33 +0000 (16:30 +0200)
committerHans Wennborg <hans@chromium.org>
Wed, 26 Aug 2020 14:30:50 +0000 (16:30 +0200)
Switch from hardcoded x64 arch to a regex in the target triple

Differential revision: https://reviews.llvm.org/D86622

clang/test/Driver/cl-options.c

index 973e74e..f4d2d66 100644 (file)
 
 // Validate that the default triple is used when run an empty tools dir is specified
 // RUN: %clang_cl -vctoolsdir "" -### -- %s 2>&1 | FileCheck %s --check-prefix VCTOOLSDIR
-// VCTOOLSDIR: "-cc1" "-triple" "x86_64-pc-windows-msvc19.11.0"
+// VCTOOLSDIR: "-triple" "{{[a-zA-Z0-9_-]*}}-pc-windows-msvc19.11.0"
 
 // Validate that built-in include paths are based on the supplied path
 // RUN: %clang_cl -vctoolsdir "/fake" -### -- %s 2>&1 | FileCheck %s --check-prefix FAKEDIR