[PATCH] D156127: Partially revert changes to test lang-std.cpp

Yaxun Liu via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jul 24 12:08:16 PDT 2023


yaxunl updated this revision to Diff 543671.
yaxunl added a comment.

fix typo


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D156127/new/

https://reviews.llvm.org/D156127

Files:
  clang/test/Preprocessor/lang-std.cpp


Index: clang/test/Preprocessor/lang-std.cpp
===================================================================
--- clang/test/Preprocessor/lang-std.cpp
+++ clang/test/Preprocessor/lang-std.cpp
@@ -1,10 +1,13 @@
 /// Test default standards.
-/// CUDA/HIP uses the same default standards as C++.
 
 // RUN: %clang_cc1 -dM -E %s | grep __cplusplus >%T-cpp-std.txt
-// RUN: %clang_cc1 -dM -E -x cuda %s | grep __cplusplus >%T-cuda-cuda.txt
+// RUN: FileCheck --input-file %T-cpp-std.txt --check-prefix=CXX17 %s
+
+/// Check that CUDA/HIP uses the same default standards as C++.
+
+// RUN: %clang_cc1 -dM -E -x cuda %s | grep __cplusplus >%T-cuda-std.txt
 // RUN: %clang_cc1 -dM -E -x hip %s | grep __cplusplus >%T-hip-std.txt
-// RUN: diff %T-cpp-std.txt %T-cuda-cuda.txt
+// RUN: diff %T-cpp-std.txt %T-cuda-std.txt
 // RUN: diff %T-cpp-std.txt %T-hip-std.txt
 
 // RUN: %clang_cc1 -dM -E -x cuda -std=c++14 %s | FileCheck --check-prefix=CXX14 %s


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D156127.543671.patch
Type: text/x-patch
Size: 945 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20230724/cc8e363f/attachment.bin>


More information about the cfe-commits mailing list