Skip to content
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

Convert softmax from CTest to GTest #3479

Merged
merged 12 commits into from
Feb 10, 2025
3 changes: 2 additions & 1 deletion test/gtest/check_names.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def check_names_uniqueness() :
error_count += 1
cases_count += len(occurences[key])

print ("Gtest folder test class names uniqness check, total files checked: " + str(files_count) + ", total errors = " + str(error_count) + ". Total files with duplicates = " + str(cases_count))
print ("Gtest folder test class names uniqueness check, total cpp-files checked: " + str(files_count) + ", total errors = " + str(error_count) + ". Total files with duplicates = " + str(cases_count))

if error_count > 0:
return -1
Expand All @@ -165,6 +165,7 @@ def main():
"""Main function"""
args = parse_args()
naming_check_result = check_naming_schema(args)

if naming_check_result < 0:
return naming_check_result

Expand Down
Loading
Loading