Apply 'make format'

This commit is contained in:
github action 2023-02-03 00:11:37 +00:00
parent f6d4f1ad02
commit 82f450d838
1 changed files with 6 additions and 2 deletions

View File

@ -415,10 +415,14 @@ int _mon_check_getput() {
} }
int _mon_check_var_long_name() { int _mon_check_var_long_name() {
TestVpiHandle vh2 = VPI_HANDLE("LONGSTART_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_LONGEND"); TestVpiHandle vh2 = VPI_HANDLE(
"LONGSTART_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_"
"a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_LONGEND");
CHECK_RESULT_NZ(vh2); CHECK_RESULT_NZ(vh2);
const char* p = vpi_get_str(vpiFullName, vh2); const char* p = vpi_get_str(vpiFullName, vh2);
CHECK_RESULT_CSTR(p, "t.LONGSTART_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_a_very_long_name_which_will_get_hashed_LONGEND"); CHECK_RESULT_CSTR(p, "t.LONGSTART_a_very_long_name_which_will_get_hashed_a_very_long_name_"
"which_will_get_hashed_a_very_long_name_which_will_get_hashed_a_very_"
"long_name_which_will_get_hashed_LONGEND");
return 0; return 0;
} }