Changeset 82ff0a1 in mainline
- Timestamp:
- 2025-01-12T15:37:56Z (2 weeks ago)
- Branches:
- master
- Children:
- e0e2264
- Parents:
- 4e1221c
- Location:
- uspace/app/tester
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/meson.build
r4e1221c r82ff0a1 1 1 # 2 # Copyright (c) 202 3Jiri Svoboda2 # Copyright (c) 2025 Jiri Svoboda 3 3 # Copyright (c) 2005 Martin Decky 4 4 # Copyright (c) 2007 Jakub Jermar … … 33 33 'tester.c', 34 34 'util.c', 35 'thread/deadlock.c', 35 36 'thread/thread1.c', 36 37 'thread/setjmp1.c', -
uspace/app/tester/tester.c
r4e1221c r82ff0a1 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2006 Ondrej Palkovsky 3 4 * Copyright (c) 2007 Martin Decky … … 49 50 50 51 test_t tests[] = { 52 #include "thread/deadlock.def" 51 53 #include "thread/thread1.def" 52 54 #include "thread/setjmp1.def" -
uspace/app/tester/tester.h
r4e1221c r82ff0a1 1 1 /* 2 * Copyright (c) 2025 Jiri Svoboda 2 3 * Copyright (c) 2007 Martin Decky 3 4 * All rights reserved. … … 79 80 } test_t; 80 81 82 extern const char *test_deadlock(void); 81 83 extern const char *test_thread1(void); 82 84 extern const char *test_setjmp1(void);
Note:
See TracChangeset
for help on using the changeset viewer.