Changeset b22b0a94 in mainline for uspace/app/tester/tester.h
- Timestamp:
- 2019-08-07T05:39:54Z (5 years ago)
- Children:
- b8341bc
- Parents:
- 5cd2290
- git-author:
- Michal Koutný <xm.koutny+hos@…> (2015-10-19 21:34:52)
- git-committer:
- Matthieu Riolo <matthieu.riolo@…> (2019-08-07 05:39:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/tester.h
r5cd2290 rb22b0a94 70 70 } while (0) 71 71 72 #define S(x) #x 73 #define S_(x) S(x) 74 #define S__LINE__ S_(__LINE__) 75 76 #define TASSERT(expr) \ 77 do { \ 78 if (!(expr)) \ 79 return "Failed " #expr " " __FILE__ ":" S__LINE__ ; \ 80 } while (0) 81 82 72 83 typedef const char *(*test_entry_t)(void); 73 84 … … 112 123 extern const char *test_chardev1(void); 113 124 extern const char *test_proc_dummy_task(void); 125 extern const char *test_proc_task_anywait(void); 114 126 extern const char *test_proc_task_wait(void); 115 127
Note:
See TracChangeset
for help on using the changeset viewer.