Author: David Spickett
Date: 2023-09-01T14:53:41Z
New Revision: 7c6544333eba516c1b569fb74288bbfe9ca54c1f

URL: 
https://github.com/llvm/llvm-project/commit/7c6544333eba516c1b569fb74288bbfe9ca54c1f
DIFF: 
https://github.com/llvm/llvm-project/commit/7c6544333eba516c1b569fb74288bbfe9ca54c1f.diff

LOG: [clang][Sema] Correct RUN line in fixit tests

These were missing the ":" on the end.

Added: 
    

Modified: 
    clang/test/Sema/warn-documentation-fixits.c
    clang/test/Sema/warn-documentation-fixits.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/Sema/warn-documentation-fixits.c 
b/clang/test/Sema/warn-documentation-fixits.c
index 413ebb26b3153d..5b6efb2018d827 100644
--- a/clang/test/Sema/warn-documentation-fixits.c
+++ b/clang/test/Sema/warn-documentation-fixits.c
@@ -1,5 +1,5 @@
 // RUN: %clang_cc1 -fsyntax-only -Wdocumentation -Wdocumentation-pedantic 
-fcomment-block-commands=foobar -verify %s
-// RUN  %clang_cc1 -std=c18 -fsyntax-only -Wdocumentation 
-Wdocumentation-pedantic -fcomment-block-commands=foobar 
-fdiagnostics-parseable-fixits %s 2>&1 | FileCheck 
-DATTRIBUTE="__attribute__((deprecated))" %s
+// RUN: %clang_cc1 -std=c18 -fsyntax-only -Wdocumentation 
-Wdocumentation-pedantic -fcomment-block-commands=foobar 
-fdiagnostics-parseable-fixits %s 2>&1 | FileCheck 
-DATTRIBUTE="__attribute__((deprecated))" %s
 // RUN: %clang_cc1 -std=c2x -DC2x -fsyntax-only -Wdocumentation 
-Wdocumentation-pedantic -fcomment-block-commands=foobar 
-fdiagnostics-parseable-fixits %s 2>&1 | FileCheck 
--check-prefixes=CHECK,CHECK2x -DATTRIBUTE="[[deprecated]]" %s
 
 // expected-warning@+1 {{declaration is marked with '\deprecated' command but 
does not have a deprecation attribute}} expected-note@+2 {{add a deprecation 
attribute to the declaration to silence this warning}}

diff  --git a/clang/test/Sema/warn-documentation-fixits.cpp 
b/clang/test/Sema/warn-documentation-fixits.cpp
index 8c1b1eae021f6a..bccc8e17ca121b 100644
--- a/clang/test/Sema/warn-documentation-fixits.cpp
+++ b/clang/test/Sema/warn-documentation-fixits.cpp
@@ -1,5 +1,5 @@
 // RUN: %clang_cc1 -fsyntax-only -Wdocumentation -Wdocumentation-pedantic 
-fcomment-block-commands=foobar -verify %s
-// RUN  %clang_cc1 -std=c++11 -fsyntax-only -Wdocumentation 
-Wdocumentation-pedantic -fcomment-block-commands=foobar 
-fdiagnostics-parseable-fixits %s 2>&1 | FileCheck 
-DATTRIBUTE="__attribute__((deprecated))" %s
+// RUN: %clang_cc1 -std=c++11 -fsyntax-only -Wdocumentation 
-Wdocumentation-pedantic -fcomment-block-commands=foobar 
-fdiagnostics-parseable-fixits %s 2>&1 | FileCheck 
-DATTRIBUTE="__attribute__((deprecated))" %s
 // RUN: %clang_cc1 -std=c++14 -fsyntax-only -Wdocumentation 
-Wdocumentation-pedantic -fcomment-block-commands=foobar 
-fdiagnostics-parseable-fixits %s 2>&1 | FileCheck 
--check-prefixes=CHECK,CHECK14 -DATTRIBUTE="[[deprecated]]" %s
 
 // expected-warning@+1 {{parameter 'ZZZZZZZZZZ' not found in the function 
declaration}} expected-note@+1 {{did you mean 'a'?}}


        
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to