File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -709,7 +709,7 @@ jobs:
709
709
710
710
unittest-linux-gcc-4-8-5 :
711
711
runs-on : ubuntu-24.04
712
- # needs: unittest-linux
712
+ needs : unittest-linux
713
713
steps :
714
714
- uses : actions/checkout@v4
715
715
- name : dependencies
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ namespace {
69
69
}
70
70
71
71
TEST (TryCatch, Basic) {
72
- constexpr std::string test_name = __func__;
72
+ std::string test_name = __func__;
73
73
int line = 0 ;
74
74
bool did_catch = false ;
75
75
cpptrace::try_catch (
@@ -101,7 +101,7 @@ TEST(TryCatch, NoException) {
101
101
}
102
102
103
103
TEST (TryCatch, Upcast) {
104
- constexpr std::string test_name = __func__;
104
+ std::string test_name = __func__;
105
105
int line = 0 ;
106
106
bool did_catch = false ;
107
107
cpptrace::try_catch (
@@ -157,7 +157,7 @@ TEST(TryCatch, NoMatchingHandler) {
157
157
}
158
158
159
159
TEST (TryCatch, CorrectHandler) {
160
- constexpr std::string test_name = __func__;
160
+ std::string test_name = __func__;
161
161
int line = 0 ;
162
162
bool did_catch = false ;
163
163
cpptrace::try_catch (
@@ -185,7 +185,7 @@ TEST(TryCatch, CorrectHandler) {
185
185
}
186
186
187
187
TEST (TryCatch, BlanketHandler) {
188
- constexpr std::string test_name = __func__;
188
+ std::string test_name = __func__;
189
189
int line = 0 ;
190
190
bool did_catch = false ;
191
191
cpptrace::try_catch (
@@ -212,7 +212,7 @@ TEST(TryCatch, BlanketHandler) {
212
212
}
213
213
214
214
TEST (TryCatch, CatchOrdering) {
215
- constexpr std::string test_name = __func__;
215
+ std::string test_name = __func__;
216
216
int line = 0 ;
217
217
bool did_catch = false ;
218
218
cpptrace::try_catch (
You can’t perform that action at this time.
0 commit comments