github-actions[bot] wrote:
<!--PREMERGE ADVISOR COMMENT: Windows-->
# :window: Windows x64 Test Results
* 3171 tests passed
* 31 tests skipped
* 2 tests failed
## Failed Tests
(click on a test name to see its output)
### Clang Tools
<details>
<summary>Clang
Tools.clang-tidy/checkers/bugprone/implicit-widening-of-multiplication-result-int.cpp</summary>
```
Exit Code: 1
Command Output (stdout):
--
# RUN: at line 1
C:/Python312/python.exe
C:/_work/llvm-project/llvm-project/clang-tools-extra/test/../test\clang-tidy\check_clang_tidy.py
-check-suffixes=ALL,C -std=c99
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\checkers\bugprone\implicit-widening-of-multiplication-result-int.cpp
bugprone-implicit-widening-of-multiplication-result
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp
-- -- -target x86_64-unknown-unknown -x c
# executed command: C:/Python312/python.exe
'C:/_work/llvm-project/llvm-project/clang-tools-extra/test/../test\clang-tidy\check_clang_tidy.py'
-check-suffixes=ALL,C -std=c99
'C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\checkers\bugprone\implicit-widening-of-multiplication-result-int.cpp'
bugprone-implicit-widening-of-multiplication-result
'C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp'
-- -- -target x86_64-unknown-unknown -x c
# .---command stdout------------
# | Running ['clang-tidy', '--experimental-custom-checks',
'C:\\_work\\llvm-project\\llvm-project\\build\\tools\\clang\\tools\\extra\\test\\clang-tidy\\checkers\\bugprone\\Output\\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp',
'-fix', '--checks=-*,bugprone-implicit-widening-of-multiplication-result',
'--config={}', '--', '-target', 'x86_64-unknown-unknown', '-x', 'c',
'-std=c99', '-nostdinc++', '-isystem',
'C:\\_work\\llvm-project\\llvm-project\\clang-tools-extra\\test\\clang-tidy\\checkers\\Inputs\\Headers\\std']...
# | ------------------------ clang-tidy output -----------------------
# | 11 warnings generated.
# |
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:16:10:
warning: performing an implicit widening conversion to type 'long' of a
multiplication performed in type 'int'
[bugprone-implicit-widening-of-multiplication-result]
# | 16 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:16:10:
note: make conversion explicit to silence this warning
# | 1 | // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s
bugprone-implicit-widening-of-multiplication-result %t -- -- -target
x86_64-unknown-unknown -x c
# | 2 | // RUN: %check_clang_tidy -check-suffixes=ALL,CXX %s
bugprone-implicit-widening-of-multiplication-result %t -- -- -target
x86_64-unknown-unknown -x c++
# | 3 |
# | 4 | // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s
bugprone-implicit-widening-of-multiplication-result %t -- \
# | 5 | // RUN: -config='{CheckOptions: { \
# | 6 | // RUN:
bugprone-implicit-widening-of-multiplication-result.UseCXXStaticCastsInCppSources:
false \
# | 7 | // RUN: }}' -- -target x86_64-unknown-unknown -x c
# | 8 | // RUN: %check_clang_tidy -check-suffixes=ALL,C %s
bugprone-implicit-widening-of-multiplication-result %t -- \
# | 9 | // RUN: -config='{CheckOptions: { \
# | 10 | // RUN:
bugprone-implicit-widening-of-multiplication-result.UseCXXStaticCastsInCppSources:
false \
# | 11 | // RUN: }}' -- -target x86_64-unknown-unknown -x c++
# | 12 |
# | 13 | typedef long long int64_t;
# | 14 |
# | 15 | long t0(int a, int b) {
# | 16 | return a * b;
# | | ^~~~~
# | | (long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:16:10:
note: perform multiplication in a wider type
# | 16 | return a * b;
# | | ^
# | | (long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:26:10:
warning: performing an implicit widening conversion to type 'unsigned long' of
a multiplication performed in type 'int'
[bugprone-implicit-widening-of-multiplication-result]
# | 26 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:26:10:
note: make conversion explicit to silence this warning
# | 26 | return a * b;
# | | ^~~~~
# | | (unsigned long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:26:10:
note: perform multiplication in a wider type
# | 26 | return a * b;
# | | ^
# | | (long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:37:10:
warning: performing an implicit widening conversion to type 'long' of a
multiplication performed in type 'unsigned int'
[bugprone-implicit-widening-of-multiplication-result]
# | 37 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:37:10:
note: make conversion explicit to silence this warning
# | 37 | return a * b;
# | | ^~~~~
# | | (long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:37:10:
note: perform multiplication in a wider type
# | 37 | return a * b;
# | | ^
# | | (unsigned long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:47:10:
warning: performing an implicit widening conversion to type 'unsigned long' of
a multiplication performed in type 'unsigned int'
[bugprone-implicit-widening-of-multiplication-result]
# | 47 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:47:10:
note: make conversion explicit to silence this warning
# | 47 | return a * b;
# | | ^~~~~
# | | (unsigned long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:47:10:
note: perform multiplication in a wider type
# | 47 | return a * b;
# | | ^
# | | (unsigned long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:58:10:
warning: performing an implicit widening conversion to type 'long' of a
multiplication performed in type 'unsigned int'
[bugprone-implicit-widening-of-multiplication-result]
# | 58 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:58:10:
note: make conversion explicit to silence this warning
# | 58 | return a * b;
# | | ^~~~~
# | | (long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:58:10:
note: perform multiplication in a wider type
# | 58 | return a * b;
# | | ^
# | | (unsigned long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:64:10:
warning: performing an implicit widening conversion to type 'unsigned long' of
a multiplication performed in type 'unsigned int'
[bugprone-implicit-widening-of-multiplication-result]
# | 64 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:64:10:
note: make conversion explicit to silence this warning
# | 64 | return a * b;
# | | ^~~~~
# | | (unsigned long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:64:10:
note: perform multiplication in a wider type
# | 64 | return a * b;
# | | ^
# | | (unsigned long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:71:10:
warning: performing an implicit widening conversion to type 'long' of a
multiplication performed in type 'unsigned int'
[bugprone-implicit-widening-of-multiplication-result]
# | 71 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:71:10:
note: make conversion explicit to silence this warning
# | 71 | return a * b;
# | | ^~~~~
# | | (long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:71:10:
note: perform multiplication in a wider type
# | 71 | return a * b;
# | | ^
# | | (unsigned long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:77:10:
warning: performing an implicit widening conversion to type 'unsigned long' of
a multiplication performed in type 'unsigned int'
[bugprone-implicit-widening-of-multiplication-result]
# | 77 | return a * b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:77:10:
note: make conversion explicit to silence this warning
# | 77 | return a * b;
# | | ^~~~~
# | | (unsigned long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:77:10:
note: perform multiplication in a wider type
# | 77 | return a * b;
# | | ^
# | | (unsigned long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:84:11:
warning: performing an implicit widening conversion to type 'long' of a
multiplication performed in type 'int'
[bugprone-implicit-widening-of-multiplication-result]
# | 84 | return (a * b);
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:84:11:
note: make conversion explicit to silence this warning
# | 84 | return (a * b);
# | | ^~~~~
# | | (long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:84:11:
note: perform multiplication in a wider type
# | 84 | return (a * b);
# | | ^
# | | (long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:90:10:
warning: performing an implicit widening conversion to type 'long' of a
multiplication performed in type 'int'
[bugprone-implicit-widening-of-multiplication-result]
# | 90 | return (a)*b;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:90:10:
note: make conversion explicit to silence this warning
# | 90 | return (a)*b;
# | | ^~~~~
# | | (long)( )
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:90:10:
note: perform multiplication in a wider type
# | 90 | return (a)*b;
# | | ^~~
# | | (long)
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:96:10:
warning: performing an implicit widening conversion to type 'int64_t' (aka
'long long') of a multiplication performed in type 'int'
[bugprone-implicit-widening-of-multiplication-result]
# | 96 | return 512 * 1024;
# | | ^
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:96:10:
note: make conversion explicit to silence this warning
# | 96 | return 512 * 1024;
# | | ^~~~~~~~~~
# | | (int64_t)()
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:96:10:
note: perform multiplication in a wider type
# | 96 | return 512 * 1024;
# | | ^~~
# | | ll
# |
# | ------------------------------------------------------------------
# | ------------------------------ Fixes -----------------------------
# |
# | ------------------------------------------------------------------
# | FileCheck
--input-file=C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\checkers\bugprone\implicit-widening-of-multiplication-result-int.cpp
--check-prefixes=CHECK-FIXES-C --match-full-lines failed:
# |
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\checkers\bugprone\implicit-widening-of-multiplication-result-int.cpp:101:20:
error: CHECK-FIXES-C: expected string not found in input
# |
# | // CHECK-FIXES-C: return (int64_t)(512ll * 1024);
# |
# | ^
# |
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:1:1:
note: scanning from here
# |
# | // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s
bugprone-implicit-widening-of-multiplication-result %t -- -- -target
x86_64-unknown-unknown -x c
# |
# | ^
# |
# |
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp:96:2:
note: possible intended match here
# |
# | return 512 * 1024;
# |
# | ^
# |
# |
# |
# | Input file:
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\checkers\bugprone\Output\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp
# |
# | Check file:
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\checkers\bugprone\implicit-widening-of-multiplication-result-int.cpp
# |
# |
# |
# | -dump-input=help explains the following input dump.
# |
# |
# |
# | Input was:
# |
# | <<<<<<
# |
# | 1: // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s
bugprone-implicit-widening-of-multiplication-result %t -- -- -target
x86_64-unknown-unknown -x c
# |
# | check:101'0
X~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error: no match found
# |
# | 2: // RUN: %check_clang_tidy -check-suffixes=ALL,CXX %s
bugprone-implicit-widening-of-multiplication-result %t -- -- -target
x86_64-unknown-unknown -x c++
# |
# | check:101'0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
# | 3:
# |
# | check:101'0 ~
# |
# | 4: // RUN: %check_clang_tidy -check-suffixes=ALL,C -std=c99 %s
bugprone-implicit-widening-of-multiplication-result %t -- \
# |
# | check:101'0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
# | 5: // RUN: -config='{CheckOptions: { \
# |
# | check:101'0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
# | 6: // RUN:
bugprone-implicit-widening-of-multiplication-result.UseCXXStaticCastsInCppSources:
false \
# |
# | check:101'0
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
# | .
# |
# | .
# |
# | .
# |
# | 91: //
# |
# | check:101'0 ~~~~
# |
# | 92: //
# |
# | check:101'0 ~~~~
# |
# | 93: //
# |
# | check:101'0 ~~~~
# |
# | 94: }
# |
# | check:101'0 ~~
# |
# | 95: int64_t t10() {
# |
# | check:101'0 ~~~~~~~~~~~~~~~~
# |
# | 96: return 512 * 1024;
# |
# | check:101'0 ~~~~~~~~~~~~~~~~~~~~
# |
# | check:101'1 ? possible intended match
# |
# | 97: //
# |
# | check:101'0 ~~~~
# |
# | 98: //
# |
# | check:101'0 ~~~~
# |
# | 99: //
# |
# | check:101'0 ~~~~
# |
# | 100: //
# |
# | check:101'0 ~~~~
# |
# | 101: //
# |
# | check:101'0 ~~~~
# |
# | .
# |
# | .
# |
# | .
# |
# | >>>>>>
# |
# |
# `-----------------------------
# .---command stderr------------
# | Traceback (most recent call last):
# | File
"C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\check_clang_tidy.py",
line 558, in <module>
# | main()
# | File
"C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\check_clang_tidy.py",
line 554, in main
# | CheckRunner(args, extra_args).run()
# | File
"C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\check_clang_tidy.py",
line 432, in run
# | self.check_fixes()
# | File
"C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\check_clang_tidy.py",
line 327, in check_fixes
# | try_run(
# | File
"C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\check_clang_tidy.py",
line 64, in try_run
# | process_output = subprocess.check_output(args,
stderr=subprocess.STDOUT).decode(
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# | File "c:\python312\Lib\subprocess.py", line 466, in check_output
# | return run(*popenargs, stdout=PIPE, timeout=timeout, check=True,
# | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
# | File "c:\python312\Lib\subprocess.py", line 571, in run
# | raise CalledProcessError(retcode, process.args,
# | subprocess.CalledProcessError: Command '['FileCheck',
'--input-file=C:\\_work\\llvm-project\\llvm-project\\build\\tools\\clang\\tools\\extra\\test\\clang-tidy\\checkers\\bugprone\\Output\\implicit-widening-of-multiplication-result-int.cpp.tmp.cpp',
'C:\\_work\\llvm-project\\llvm-project\\clang-tools-extra\\test\\clang-tidy\\checkers\\bugprone\\implicit-widening-of-multiplication-result-int.cpp',
'--check-prefixes=CHECK-FIXES-C', '--match-full-lines']' returned non-zero
exit status 1.
# `-----------------------------
# error: command failed with exit status: 1
--
```
</details>
<details>
<summary>Clang Tools.clang-tidy/infrastructure/alphabetical-order.test</summary>
```
Exit Code: 1
Command Output (stdout):
--
# RUN: at line 1
C:/Python312/python.exe
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../clang-tidy/tool/check_alphabetical_order.py
-o
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.clang-tidy-checks-list.rst
# executed command: C:/Python312/python.exe
'C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../clang-tidy/tool/check_alphabetical_order.py'
-o
'C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.clang-tidy-checks-list.rst'
# note: command had no output on stdout or stderr
# RUN: at line 2
diff --strip-trailing-cr
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../docs/clang-tidy/checks/list.rst
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.clang-tidy-checks-list.rst
# executed command: diff --strip-trailing-cr
'C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../docs/clang-tidy/checks/list.rst'
'C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.clang-tidy-checks-list.rst'
# note: command had no output on stdout or stderr
# RUN: at line 4
C:/Python312/python.exe
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../clang-tidy/tool/check_alphabetical_order.py
-o
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.ReleaseNotes.rst
# executed command: C:/Python312/python.exe
'C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../clang-tidy/tool/check_alphabetical_order.py'
-o
'C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.ReleaseNotes.rst'
# .---command stderr------------
# |
# | Entries in 'clang-tools-extra/docs/ReleaseNotes.rst' are not alphabetically
sorted.
# | Fix the ordering by applying diff printed below.
# |
# `-----------------------------
# RUN: at line 5
diff --strip-trailing-cr
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../docs/ReleaseNotes.rst
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.ReleaseNotes.rst
# executed command: diff --strip-trailing-cr
'C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../docs/ReleaseNotes.rst'
'C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.ReleaseNotes.rst'
# .---command stdout------------
# | ***
C:\_work\llvm-project\llvm-project\clang-tools-extra\test\clang-tidy\infrastructure/../../../docs/ReleaseNotes.rst
# | ---
C:\_work\llvm-project\llvm-project\build\tools\clang\tools\extra\test\clang-tidy\infrastructure\Output\alphabetical-order.test.tmp.ReleaseNotes.rst
# | ***************
# | *** 365,379 ****
# | loss in overloads with transparent standard functors (e.g.
``std::plus<>``)
# | for ``std::accumulate``, ``std::reduce``, and ``std::inner_product``.
# |
# | - Improved :doc:`bugprone-inc-dec-in-conditions
# | <clang-tidy/checks/bugprone/inc-dec-in-conditions>` check by fixing a
false
# | positive when increment/decrement operators appear inside lambda bodies
that
# | are part of a condition expression.
# | -
# | - - Improved :doc:`bugprone-implicit-widening-of-multiplication-result
# | -
<clang-tidy/checks/bugprone/implicit-widening-of-multiplication-result>` check
# | - by suggesting literal suffixes (e.g. ``ll``) instead of
``static_cast<>`` for
# | - integer literals.
# |
# | - Improved :doc:`bugprone-incorrect-enable-if
# | <clang-tidy/checks/bugprone/incorrect-enable-if>` check to not
# | --- 365,379 ----
# | loss in overloads with transparent standard functors (e.g.
``std::plus<>``)
# | for ``std::accumulate``, ``std::reduce``, and ``std::inner_product``.
# |
# | + - Improved :doc:`bugprone-implicit-widening-of-multiplication-result
# | +
<clang-tidy/checks/bugprone/implicit-widening-of-multiplication-result>` check
# | + by suggesting literal suffixes (e.g. ``ll``) instead of
``static_cast<>`` for
# | + integer literals.
# | +
# | - Improved :doc:`bugprone-inc-dec-in-conditions
# | <clang-tidy/checks/bugprone/inc-dec-in-conditions>` check by fixing a
false
# | positive when increment/decrement operators appear inside lambda bodies
that
# | are part of a condition expression.
# |
# | - Improved :doc:`bugprone-incorrect-enable-if
# | <clang-tidy/checks/bugprone/incorrect-enable-if>` check to not
# `-----------------------------
# error: command failed with exit status: 1
--
```
</details>
If these failures are unrelated to your changes (for example tests are broken
or flaky at HEAD), please open an issue at
https://github.com/llvm/llvm-project/issues and add the `infrastructure` label.
https://github.com/llvm/llvm-project/pull/198258
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits