@@ -107,33 +107,33 @@ class Task {
107
107
// / @brief Validates input data and task attributes before execution.
108
108
// / @return True if validation is successful.
109
109
virtual bool Validation () final {
110
- InternalOrderTest (__builtin_FUNCTION () );
110
+ InternalOrderTest (PPC_FUNC_NAME );
111
111
return ValidationImpl ();
112
112
}
113
113
114
114
// / @brief Performs preprocessing on the input data.
115
115
// / @return True if preprocessing is successful.
116
116
virtual bool PreProcessing () final {
117
- InternalOrderTest (__builtin_FUNCTION () );
117
+ InternalOrderTest (PPC_FUNC_NAME );
118
118
if (state_of_testing_ == StateOfTesting::kFunc ) {
119
- InternalTimeTest (__builtin_FUNCTION () );
119
+ InternalTimeTest (PPC_FUNC_NAME );
120
120
}
121
121
return PreProcessingImpl ();
122
122
}
123
123
124
124
// / @brief Executes the main logic of the task.
125
125
// / @return True if execution is successful.
126
126
virtual bool Run () final {
127
- InternalOrderTest (__builtin_FUNCTION () );
127
+ InternalOrderTest (PPC_FUNC_NAME );
128
128
return RunImpl ();
129
129
}
130
130
131
131
// / @brief Performs postprocessing on the output data.
132
132
// / @return True if postprocessing is successful.
133
133
virtual bool PostProcessing () final {
134
- InternalOrderTest (__builtin_FUNCTION () );
134
+ InternalOrderTest (PPC_FUNC_NAME );
135
135
if (state_of_testing_ == StateOfTesting::kFunc ) {
136
- InternalTimeTest (__builtin_FUNCTION () );
136
+ InternalTimeTest (PPC_FUNC_NAME );
137
137
}
138
138
return PostProcessingImpl ();
139
139
}
0 commit comments