Changeset aa85487 in mainline for uspace/app/tester/tester.h
- Timestamp:
- 2010-03-07T15:11:56Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aadf01e
- Parents:
- 2e99277 (diff), 137691a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/tester.h
r2e99277 raa85487 54 54 } 55 55 56 typedef c har *(*test_entry_t)(void);56 typedef const char *(*test_entry_t)(void); 57 57 58 58 typedef struct { 59 c har *name;60 c har *desc;59 const char *name; 60 const char *desc; 61 61 test_entry_t entry; 62 62 bool safe; 63 63 } test_t; 64 64 65 extern c har *test_thread1(void);66 extern c har *test_print1(void);67 extern c har *test_print2(void);68 extern c har *test_print3(void);69 extern c har *test_print4(void);70 extern c har *test_console1(void);71 extern c har *test_stdio1(void);72 extern c har *test_stdio2(void);73 extern c har *test_fault1(void);74 extern c har *test_fault2(void);75 extern c har *test_fault3(void);76 extern c har *test_vfs1(void);77 extern c har *test_ping_pong(void);78 extern c har *test_register(void);79 extern c har *test_connect(void);80 extern c har *test_loop1(void);81 extern c har *test_malloc1(void);65 extern const char *test_thread1(void); 66 extern const char *test_print1(void); 67 extern const char *test_print2(void); 68 extern const char *test_print3(void); 69 extern const char *test_print4(void); 70 extern const char *test_console1(void); 71 extern const char *test_stdio1(void); 72 extern const char *test_stdio2(void); 73 extern const char *test_fault1(void); 74 extern const char *test_fault2(void); 75 extern const char *test_fault3(void); 76 extern const char *test_vfs1(void); 77 extern const char *test_ping_pong(void); 78 extern const char *test_register(void); 79 extern const char *test_connect(void); 80 extern const char *test_loop1(void); 81 extern const char *test_malloc1(void); 82 82 83 83 extern test_t tests[];
Note:
See TracChangeset
for help on using the changeset viewer.