Changeset 426b6cd in rtems
- Timestamp:
- 01/27/21 15:41:00 (3 years ago)
- Branches:
- master
- Children:
- e269e389
- Parents:
- 361ec320
- git-author:
- Sebastian Huber <sebastian.huber@…> (01/27/21 15:41:00)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (01/27/21 18:08:29)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/libtest/t-test.c
r361ec320 r426b6cd 1003 1003 } 1004 1004 1005 static void T_do_pop_fixture(T_context *); 1006 1005 1007 static void 1006 1008 T_do_case_end(T_context *ctx, const T_case_context *tc) … … 1014 1016 1015 1017 while (ctx->fixtures != NULL) { 1016 T_ pop_fixture();1018 T_do_pop_fixture(ctx); 1017 1019 } 1018 1020 … … 1238 1240 } 1239 1241 1240 void 1241 T_pop_fixture(void) 1242 { 1243 T_context *ctx; 1242 static void 1243 T_do_pop_fixture(T_context *ctx) 1244 { 1244 1245 T_fixture_node *node; 1245 1246 const T_fixture *fixture; 1246 1247 T_fixture_node *next; 1247 1248 1248 ctx = &T_instance;1249 1249 node = ctx->fixtures; 1250 1250 next = node->next; … … 1275 1275 } 1276 1276 1277 void 1278 T_pop_fixture(void) 1279 { 1280 T_do_pop_fixture(&T_instance); 1281 } 1282 1277 1283 size_t 1278 1284 T_get_scope(const char * const * const *desc, char *buf, size_t n,
Note: See TracChangeset
for help on using the changeset viewer.