[PATCH] D99901: [Driver][test] Test intended target only
Jinsong Ji via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Apr 5 14:44:00 PDT 2021
jsji created this revision.
jsji added a reviewer: MaskRay.
jsji requested review of this revision.
Herald added a project: clang.
Herald added a subscriber: cfe-commits.
6fe7de90b9e4e466a5c2baadafd5f72d3203651d <https://reviews.llvm.org/rG6fe7de90b9e4e466a5c2baadafd5f72d3203651d> changed GNU toolchain,
and added new RUN line to test expected behavior.
The change is for GNU toolchain only, so this will fail other toolchain,
eg: AIX.
Update the test with `-target` to test GNU tool chain only.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D99901
Files:
clang/test/Driver/nostdincxx.cpp
Index: clang/test/Driver/nostdincxx.cpp
===================================================================
--- clang/test/Driver/nostdincxx.cpp
+++ clang/test/Driver/nostdincxx.cpp
@@ -1,7 +1,7 @@
// RUN: not %clangxx -nostdinc %s 2>&1 | FileCheck %s
// RUN: not %clangxx -nostdinc++ %s 2>&1 | FileCheck %s
// RUN: not %clangxx -nostdlibinc %s 2>&1 | FileCheck %s
-// RUN: not %clangxx -fsyntax-only -nostdinc -nostdinc++ %s 2>&1 | FileCheck /dev/null --implicit-check-not=-Wunused-command-line-argument
+// RUN: not %clangxx -target unknown-unknown-gnu -fsyntax-only -nostdinc -nostdinc++ %s 2>&1 | FileCheck /dev/null --implicit-check-not=-Wunused-command-line-argument
// CHECK: file not found
#include <vector>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D99901.335332.patch
Type: text/x-patch
Size: 724 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20210405/7fb7a944/attachment.bin>
More information about the cfe-commits
mailing list