From 82f450d83848bc0f3ca5fda0169a184d9edf50db Mon Sep 17 00:00:00 2001 From: github action Date: Fri, 3 Feb 2023 00:11:37 +0000 Subject: [PATCH] Apply 'make format' --- test_regress/t/t_vpi_var.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test_regress/t/t_vpi_var.cpp b/test_regress/t/t_vpi_var.cpp index 2a65d9d68..4a179e1ff 100644 --- a/test_regress/t/t_vpi_var.cpp +++ b/test_regress/t/t_vpi_var.cpp @@ -415,10 +415,14 @@ int _mon_check_getput() { } 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); 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; }