Changeset fedac2f in mainline for uspace/app
- Timestamp:
- 2012-09-16T11:27:35Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 289fa65
- Parents:
- 8930624 (diff), 00b4a68 (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. - Location:
- uspace/app
- Files:
-
- 10 added
- 4 edited
- 2 moved
-
logset/Makefile (added)
-
logset/main.c (added)
-
tester/Makefile (modified) (3 diffs)
-
tester/ext2/ext2_1.c (moved) (moved from uspace/app/tester/libext2/libext2_1.c ) (1 diff)
-
tester/ext2/ext2_1.def (moved) (moved from uspace/app/tester/libext2/libext2_1.def ) (1 diff)
-
tester/float/float1.c (added)
-
tester/float/float1.def (added)
-
tester/float/softfloat1.c (added)
-
tester/float/softfloat1.def (added)
-
tester/stdio/logger1.c (added)
-
tester/stdio/logger1.def (added)
-
tester/stdio/logger2.c (added)
-
tester/stdio/logger2.def (added)
-
tester/tester.c (modified) (4 diffs)
-
tester/tester.h (modified) (2 diffs)
-
vuhid/main.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/tester/Makefile
r8930624 rfedac2f 29 29 30 30 USPACE_PREFIX = ../.. 31 LIBS = $(LIBEXT2_PREFIX)/libext2.a $(LIBBLOCK_PREFIX)/libblock.a 32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBEXT2_PREFIX) 31 LIBS = $(LIBEXT2_PREFIX)/libext2.a $(LIBBLOCK_PREFIX)/libblock.a $(LIBSOFTFLOAT_PREFIX)/libsoftfloat.a 32 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBEXT2_PREFIX) -I$(LIBSOFTFLOAT_PREFIX) 33 33 BINARY = tester 34 34 … … 45 45 stdio/stdio1.c \ 46 46 stdio/stdio2.c \ 47 stdio/logger1.c \ 48 stdio/logger2.c \ 47 49 fault/fault1.c \ 48 50 fault/fault2.c \ 49 51 fault/fault3.c \ 52 float/float1.c \ 53 float/softfloat1.c \ 50 54 vfs/vfs1.c \ 51 55 ipc/ping_pong.c \ … … 59 63 hw/misc/virtchar1.c \ 60 64 hw/serial/serial1.c \ 61 libext2/libext2_1.c65 ext2/ext2_1.c 62 66 63 67 include $(USPACE_PREFIX)/Makefile.common -
uspace/app/tester/ext2/ext2_1.c
r8930624 rfedac2f 51 51 } 52 52 53 const char *test_ libext2_1(void)53 const char *test_ext2_1(void) 54 54 { 55 55 ext2_superblock_t *fake1; 56 56 57 TPRINTF("Testing libext2 superblock getters...\n");57 TPRINTF("Testing ext2 superblock getters...\n"); 58 58 TPRINTF("Simple test for correct position and byte order\n"); 59 59 -
uspace/app/tester/ext2/ext2_1.def
r8930624 rfedac2f 1 1 { 2 " libext2_1",2 "ext2_1", 3 3 "Superblock getters test", 4 &test_ libext2_1,4 &test_ext2_1, 5 5 true 6 6 }, -
uspace/app/tester/tester.c
r8930624 rfedac2f 39 39 #include <stdio.h> 40 40 #include <str.h> 41 #include <io/log.h> 41 42 #include "tester.h" 42 43 … … 55 56 #include "stdio/stdio1.def" 56 57 #include "stdio/stdio2.def" 58 #include "stdio/logger1.def" 59 #include "stdio/logger2.def" 57 60 #include "fault/fault1.def" 58 61 #include "fault/fault2.def" 59 62 #include "fault/fault3.def" 63 #include "float/float1.def" 64 #include "float/softfloat1.def" 60 65 #include "vfs/vfs1.def" 61 66 #include "ipc/ping_pong.def" … … 68 73 #include "hw/serial/serial1.def" 69 74 #include "hw/misc/virtchar1.def" 70 #include " libext2/libext2_1.def"75 #include "ext2/ext2_1.def" 71 76 {NULL, NULL, NULL, false} 72 77 }; … … 138 143 } 139 144 145 log_init("tester"); 146 140 147 test_quiet = false; 141 148 test_argc = argc - 2; -
uspace/app/tester/tester.h
r8930624 rfedac2f 88 88 extern const char *test_stdio1(void); 89 89 extern const char *test_stdio2(void); 90 extern const char *test_logger1(void); 91 extern const char *test_logger2(void); 90 92 extern const char *test_fault1(void); 91 93 extern const char *test_fault2(void); 92 94 extern const char *test_fault3(void); 95 extern const char *test_float1(void); 96 extern const char *test_softfloat1(void); 93 97 extern const char *test_vfs1(void); 94 98 extern const char *test_ping_pong(void); … … 101 105 extern const char *test_serial1(void); 102 106 extern const char *test_virtchar1(void); 103 extern const char *test_ libext2_1(void);107 extern const char *test_ext2_1(void); 104 108 extern const char *test_devman1(void); 105 109 extern const char *test_devman2(void); -
uspace/app/vuhid/main.c
r8930624 rfedac2f 155 155 int rc; 156 156 157 usb_log_enable(USB_LOG_LEVEL_DEBUG2, "vusbhid");157 log_init("vuhid"); 158 158 159 159 fibril_mutex_initialize(&vuhid_data.iface_count_mutex);
Note:
See TracChangeset
for help on using the changeset viewer.
