Integrated: 8351138: Running subset of gtests gets error printing result information

SendaoYan syan at openjdk.org
Thu Mar 6 01:43:58 UTC 2025


On Tue, 4 Mar 2025 16:22:43 GMT, SendaoYan <syan at openjdk.org> wrote:

> Hi all,
> 
> This PR fix the makefile bug when there is no gtest 'disable tests' then report syntax error.
> 
> Before this PR makefile used below command to get the 'disable tests' number, when there is no 'YOU HAVE [0-9]+ DISABLED TEST' string line in gtest result file gtest.txt, this gawk command will not print anything, so shell report syntax error later.
> 
> 
> gawk '/YOU HAVE [0-9]+ DISABLED TEST/ { if (match($0, /[0-9]+/, arr)) { print arr[0]; found=1; } if (!found) { print 0; } }' build/linux-x86_64-server-release/test-results/gtest_Align_server/gtest.txt
> 
> 
> After this PR makefile will use below command to get the 'disable tests' number.
> 
> 
> gawk '/YOU HAVE [0-9]+ DISABLED TEST/ { if (match($0, /[0-9]+/, arr)) { print arr[0]; found=1; } } END { if (!found) print 0; }' build/linux-x86_64-server-release/test-results/gtest_Align_server/gtest.txt
> 
> 
> Additional testing:
> 
> - [x] make test TEST=gtest:Align > test-Alian.log, which return 0 disable test
> - [x] time make test TEST=gtest > test-all.log, which return 15 disable tests
> 
> [test-all.log](https://github.com/user-attachments/files/19074190/test-all.log)
> [test-Alian.log](https://github.com/user-attachments/files/19074189/test-Alian.log)

This pull request has now been integrated.

Changeset: 4bb3d814
Author:    SendaoYan <syan at openjdk.org>
URL:       https://git.openjdk.org/jdk/commit/4bb3d81479c1bbe2c6fc7b5234d0f1b6897be117
Stats:     2 lines in 1 file changed: 0 ins; 0 del; 2 mod

8351138: Running subset of gtests gets error printing result information

Reviewed-by: erikj

-------------

PR: https://git.openjdk.org/jdk/pull/23904


More information about the build-dev mailing list