Skip to content

Fixes for #214 and 216 FP reports #253

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 18, 2023

Conversation

knewbury01
Copy link
Contributor

@knewbury01 knewbury01 commented Mar 14, 2023

Description

fixes #214
fixes #216 - for this one, see some notes on the issue

Change request type

  • Release or process automation (GitHub workflows, internal scripts)
  • Internal documentation
  • External documentation
  • Query files (.ql, .qll, .qls or unit tests)
  • External scripts (analysis report or other code shipped as part of a release)

Rules with added or modified queries

  • No rules added
  • Queries have been added for the following rules:
    • rule number here
  • Queries have been modified for the following rules:
    • shared A12-10-1/RULE-5-3
    • A5-1-1

Release change checklist

A change note (development_handbook.md#change-notes) is required for any pull request which modifies:

  • The structure or layout of the release artifacts.
  • The evaluation performance (memory, execution time) of an existing query.
  • The results of an existing query in any circumstance.

If you are only adding new rule queries, a change note is not required.

Author: Is a change note required?

  • Yes
  • No

🚨🚨🚨
Reviewer: Confirm that format of shared queries (not the .qll file, the
.ql file that imports it) is valid by running them within VS Code.

  • Confirmed

Reviewer: Confirm that either a change note is not required or the change note is required and has been added.

  • Confirmed

Query development review checklist

For PRs that add new queries or modify existing queries, the following checklist should be completed by both the author and reviewer:

Author

  • Have all the relevant rule package description files been checked in?
  • Have you verified that the metadata properties of each new query is set appropriately?
  • Do all the unit tests contain both "COMPLIANT" and "NON_COMPLIANT" cases?
  • Are the alert messages properly formatted and consistent with the style guide?
  • Have you run the queries on OpenPilot and verified that the performance and results are acceptable?
    As a rule of thumb, predicates specific to the query should take no more than 1 minute, and for simple queries be under 10 seconds. If this is not the case, this should be highlighted and agreed in the code review process.
  • Does the query have an appropriate level of in-query comments/documentation?
  • Have you considered/identified possible edge cases?
  • Does the query not reinvent features in the standard library?
  • Can the query be simplified further (not golfed!)

Reviewer

  • Have all the relevant rule package description files been checked in?
  • Have you verified that the metadata properties of each new query is set appropriately?
  • Do all the unit tests contain both "COMPLIANT" and "NON_COMPLIANT" cases?
  • Are the alert messages properly formatted and consistent with the style guide?
  • Have you run the queries on OpenPilot and verified that the performance and results are acceptable?
    As a rule of thumb, predicates specific to the query should take no more than 1 minute, and for simple queries be under 10 seconds. If this is not the case, this should be highlighted and agreed in the code review process.
  • Does the query have an appropriate level of in-query comments/documentation?
  • Have you considered/identified possible edge cases?
  • Does the query not reinvent features in the standard library?
  • Can the query be simplified further (not golfed!)

exclude variable templates and
fix case where same scope identifiers
are considered
@knewbury01 knewbury01 self-assigned this Mar 14, 2023
@github-actions
Copy link

🤖 Beep Boop! Matrix Testing for this PR has been initiated. Please check back later for results.

💡 If you do not hear back from me please check my status! I will report even if this PR does not contain files eligible for matrix testing.

@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


PACKAGE              : Naming
COMPILE_PASS         : False
SUITE                : AUTOSAR
TEST_PASS            : False
QUERY                : IdentifierHiding
COMPILE_ERROR_OUTPUT : [2023-03-14 19:38:45] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: variable template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list
                       [2023-03-14 19:38:45] [build-stderr] template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:38:45] [build-stderr]                            ^  ~~~
                       [2023-03-14 19:38:45] [build-stderr] 1 error generated.
                       [2023-03-14 19:38:46] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:2:38: error: variable template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list
                       [2023-03-14 19:38:46] [build-stderr] template <typename T> constexpr bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:38:46] [build-stderr]                                      ^  ~~~
                       [2023-03-14 19:38:46] [build-stderr] 1 error generated.
                       [2023-03-14 19:38:46] [ERROR] Spawned process exited abnormally (code 1; tried to run: [/__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql/tools/linux64/preload_tracer, clang++, -std=c++14, -fsyntax-only, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp])
                       
TEST_DIFFERENCE      : 
RULE                 : A2-10-1


@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


TEST_PASS            : False
RULE                 : A2-10-1
QUERY                : IdentifierHiding
PACKAGE              : Naming
COMPILE_ERROR_OUTPUT : [2023-03-14 19:39:09] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: partial specialization 'foo<T>' does not specialize any template arguments; to define the primary template, remove the template argument list
                       [2023-03-14 19:39:09] [build-stderr]  template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:39:09] [build-stderr]                             ^~~~~~
                       [2023-03-14 19:39:09] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:32:38: note: primary template here
                       [2023-03-14 19:39:09] [build-stderr]  template <typename T> constexpr bool foo = false; // COMPLIANT
                       [2023-03-14 19:39:09] [build-stderr]                                       ^~~
                       [2023-03-14 19:39:09] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: specialization of 'template<class T> constexpr const bool foo<T>' in different namespace [-fpermissive]
                       [2023-03-14 19:39:09] [build-stderr]  template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:39:09] [build-stderr]                             ^~~~~~
                       [2023-03-14 19:39:09] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:32:38: note:   from definition of 'template<class T> constexpr const bool foo<T>'
                       [2023-03-14 19:39:09] [build-stderr]  template <typename T> constexpr bool foo = false; // COMPLIANT
                       [2023-03-14 19:39:09] [build-stderr]                                       ^~~
                       [2023-03-14 19:39:09] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:2:38: error: partial specialization 'foo<T>' does not specialize any template arguments; to define the primary template, remove the template argument list
                       [2023-03-14 19:39:09] [build-stderr]  template <typename T> constexpr bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:39:09] [build-stderr]                                       ^~~~~~
                       [2023-03-14 19:39:09] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:1:38: note: primary template here
                       [2023-03-14 19:39:09] [build-stderr]  template <typename T> constexpr bool foo = false;   // COMPLIANT
                       [2023-03-14 19:39:09] [build-stderr]                                       ^~~
                       [2023-03-14 19:39:09] [ERROR] Spawned process exited abnormally (code 1; tried to run: [/__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql/tools/linux64/preload_tracer, g++, -std=c++14, -fsyntax-only, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp])
                       
SUITE                : AUTOSAR
TEST_DIFFERENCE      : 
COMPILE_PASS         : False


@github-actions
Copy link

🤖 Beep Boop! Matrix Testing for this PR has been initiated. Please check back later for results.

💡 If you do not hear back from me please check my status! I will report even if this PR does not contain files eligible for matrix testing.

@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! Matrix Testing for this PR has been completed. If no reports were posted it means this PR does not contain things that need matrix testing!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


PACKAGE              : Naming
COMPILE_ERROR_OUTPUT : [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: partial specialization 'foo<T>' does not specialize any template arguments; to define the primary template, remove the template argument list
                       [2023-03-14 19:42:59] [build-stderr]  template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                             ^~~~~~
                       [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:32:38: note: primary template here
                       [2023-03-14 19:42:59] [build-stderr]  template <typename T> constexpr bool foo = false; // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                                       ^~~
                       [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: specialization of 'template<class T> constexpr const bool foo<T>' in different namespace [-fpermissive]
                       [2023-03-14 19:42:59] [build-stderr]  template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                             ^~~~~~
                       [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:32:38: note:   from definition of 'template<class T> constexpr const bool foo<T>'
                       [2023-03-14 19:42:59] [build-stderr]  template <typename T> constexpr bool foo = false; // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                                       ^~~
                       [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:2:38: error: partial specialization 'foo<T>' does not specialize any template arguments; to define the primary template, remove the template argument list
                       [2023-03-14 19:42:59] [build-stderr]  template <typename T> constexpr bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                                       ^~~~~~
                       [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:1:38: note: primary template here
                       [2023-03-14 19:42:59] [build-stderr]  template <typename T> constexpr bool foo = false;   // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                                       ^~~
                       [2023-03-14 19:42:59] [ERROR] Spawned process exited abnormally (code 1; tried to run: [/__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql/tools/linux64/preload_tracer, g++, -std=c++14, -fsyntax-only, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp])
                       
TEST_DIFFERENCE      : 
SUITE                : AUTOSAR
TEST_PASS            : False
QUERY                : IdentifierHiding
RULE                 : A2-10-1
COMPILE_PASS         : False


@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


TEST_PASS            : False
SUITE                : AUTOSAR
RULE                 : A2-10-1
COMPILE_PASS         : False
PACKAGE              : Naming
COMPILE_ERROR_OUTPUT : [2023-03-14 19:42:59] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: variable template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list
                       [2023-03-14 19:42:59] [build-stderr] template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:42:59] [build-stderr]                            ^  ~~~
                       [2023-03-14 19:42:59] [build-stderr] 1 error generated.
                       [2023-03-14 19:43:00] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:2:38: error: variable template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list
                       [2023-03-14 19:43:00] [build-stderr] template <typename T> constexpr bool foo<T> = true; // COMPLIANT
                       [2023-03-14 19:43:00] [build-stderr]                                      ^  ~~~
                       [2023-03-14 19:43:00] [build-stderr] 1 error generated.
                       [2023-03-14 19:43:00] [ERROR] Spawned process exited abnormally (code 1; tried to run: [/__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql/tools/linux64/preload_tracer, clang++, -std=c++14, -fsyntax-only, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp])
                       
TEST_DIFFERENCE      : 
QUERY                : IdentifierHiding


exclude file stream call args
and heuristic wrappers
@github-actions
Copy link

🤖 Beep Boop! Matrix Testing for this PR has been initiated. Please check back later for results.

💡 If you do not hear back from me please check my status! I will report even if this PR does not contain files eligible for matrix testing.

@knewbury01 knewbury01 enabled auto-merge March 16, 2023 21:44
@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@knewbury01 knewbury01 requested a review from lcartey March 16, 2023 21:44
@knewbury01 knewbury01 changed the title Fixes for #214 FP reports Fixes for #214 and 216 FP reports Mar 16, 2023
@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


RULE                 : A5-1-1
TEST_PASS            : True
COMPILE_PASS         : True
QUERY                : LiteralValueUsedOutsideTypeInit
TEST_DIFFERENCE      : 
PACKAGE              : Literals
COMPILE_ERROR_OUTPUT : 
SUITE                : AUTOSAR

RULE                 : A2-10-1
TEST_PASS            : False
COMPILE_PASS         : False
QUERY                : IdentifierHiding
TEST_DIFFERENCE      : 
PACKAGE              : Naming
COMPILE_ERROR_OUTPUT : [2023-03-16 21:45:42] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: variable template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list
                       [2023-03-16 21:45:42] [build-stderr] template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-16 21:45:42] [build-stderr]                            ^  ~~~
                       [2023-03-16 21:45:42] [build-stderr] 1 error generated.
                       [2023-03-16 21:45:43] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:2:38: error: variable template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list
                       [2023-03-16 21:45:43] [build-stderr] template <typename T> constexpr bool foo<T> = true; // COMPLIANT
                       [2023-03-16 21:45:43] [build-stderr]                                      ^  ~~~
                       [2023-03-16 21:45:43] [build-stderr] 1 error generated.
                       [2023-03-16 21:45:43] [ERROR] Spawned process exited abnormally (code 1; tried to run: [/__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql/tools/linux64/preload_tracer, clang++, -std=c++14, -fsyntax-only, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp])
                       
SUITE                : AUTOSAR


@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


QUERY                : LiteralValueUsedOutsideTypeInit
RULE                 : A5-1-1
TEST_DIFFERENCE      : 
SUITE                : AUTOSAR
PACKAGE              : Literals
COMPILE_PASS         : True
TEST_PASS            : True
COMPILE_ERROR_OUTPUT : 

QUERY                : IdentifierHiding
RULE                 : A2-10-1
TEST_DIFFERENCE      : 
SUITE                : AUTOSAR
PACKAGE              : Naming
COMPILE_PASS         : False
TEST_PASS            : False
COMPILE_ERROR_OUTPUT : [2023-03-16 21:47:37] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: partial specialization 'foo<T>' does not specialize any template arguments; to define the primary template, remove the template argument list
                       [2023-03-16 21:47:37] [build-stderr]  template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-16 21:47:37] [build-stderr]                             ^~~~~~
                       [2023-03-16 21:47:37] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:32:38: note: primary template here
                       [2023-03-16 21:47:37] [build-stderr]  template <typename T> constexpr bool foo = false; // COMPLIANT
                       [2023-03-16 21:47:37] [build-stderr]                                       ^~~
                       [2023-03-16 21:47:37] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:35:28: error: specialization of 'template<class T> constexpr const bool foo<T>' in different namespace [-fpermissive]
                       [2023-03-16 21:47:37] [build-stderr]  template <typename T> bool foo<T> = true; // COMPLIANT
                       [2023-03-16 21:47:37] [build-stderr]                             ^~~~~~
                       [2023-03-16 21:47:37] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp:32:38: note:   from definition of 'template<class T> constexpr const bool foo<T>'
                       [2023-03-16 21:47:37] [build-stderr]  template <typename T> constexpr bool foo = false; // COMPLIANT
                       [2023-03-16 21:47:37] [build-stderr]                                       ^~~
                       [2023-03-16 21:47:37] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:2:38: error: partial specialization 'foo<T>' does not specialize any template arguments; to define the primary template, remove the template argument list
                       [2023-03-16 21:47:37] [build-stderr]  template <typename T> constexpr bool foo<T> = true; // COMPLIANT
                       [2023-03-16 21:47:37] [build-stderr]                                       ^~~~~~
                       [2023-03-16 21:47:37] [build-stderr] /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp:1:38: note: primary template here
                       [2023-03-16 21:47:37] [build-stderr]  template <typename T> constexpr bool foo = false;   // COMPLIANT
                       [2023-03-16 21:47:37] [build-stderr]                                       ^~~
                       [2023-03-16 21:47:37] [ERROR] Spawned process exited abnormally (code 1; tried to run: [/__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql/tools/linux64/preload_tracer, g++, -std=c++14, -fsyntax-only, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test.cpp, /__w/codeql-coding-standards-release-engineering/codeql-coding-standards-release-engineering/codeql-coding-standards/cpp/common/test/rules/identifierhidden/test1.cpp])
                       


@github-actions
Copy link

🤖 Beep Boop! Matrix Testing for this PR has been initiated. Please check back later for results.

💡 If you do not hear back from me please check my status! I will report even if this PR does not contain files eligible for matrix testing.

@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/c/X86_64 Matrix Testing for this PR has been completed but I didn't find anything to test!

@jsinglet
Copy link
Contributor

🤖 Beep Boop! gcc/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


TEST_PASS            : True
COMPILE_PASS         : True
PACKAGE              : Literals
COMPILE_ERROR_OUTPUT : 
QUERY                : LiteralValueUsedOutsideTypeInit
SUITE                : AUTOSAR
TEST_DIFFERENCE      : 
RULE                 : A5-1-1

TEST_PASS            : True
COMPILE_PASS         : True
PACKAGE              : Naming
COMPILE_ERROR_OUTPUT : 
QUERY                : IdentifierHiding
SUITE                : AUTOSAR
TEST_DIFFERENCE      : 
RULE                 : A2-10-1


@jsinglet
Copy link
Contributor

🤖 Beep Boop! clang/cpp/X86_64 Matrix Testing for this PR has been completed. See below for the results!


SUITE                : AUTOSAR
QUERY                : LiteralValueUsedOutsideTypeInit
COMPILE_PASS         : True
TEST_DIFFERENCE      : 
COMPILE_ERROR_OUTPUT : 
PACKAGE              : Literals
TEST_PASS            : True
RULE                 : A5-1-1

SUITE                : AUTOSAR
QUERY                : IdentifierHiding
COMPILE_PASS         : True
TEST_DIFFERENCE      : 
COMPILE_ERROR_OUTPUT : 
PACKAGE              : Naming
TEST_PASS            : True
RULE                 : A2-10-1


Copy link
Collaborator

@lcartey lcartey left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few suggested changes.

@knewbury01
Copy link
Contributor Author

/test-performance

@knewbury01 knewbury01 requested a review from lcartey March 30, 2023 16:31
reintroduce omission wrappers
@knewbury01 knewbury01 requested a review from lcartey May 3, 2023 17:29
@knewbury01 knewbury01 added this pull request to the merge queue May 18, 2023
Merged via the queue into github:main with commit d4801f8 May 18, 2023
@knewbury01 knewbury01 deleted the knewbury01/more-FP-fix branch May 18, 2023 16:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging this pull request may close these issues.

A5-1-1: Expand set of logging mechanisms A2-10-1: Exclude variable templates
3 participants