Changeset 45ce950 in mainline
- Timestamp:
- 2011-05-26T10:05:36Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a1e7e78
- Parents:
- d4c472b
- Location:
- kernel
- Files:
-
- 10 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/Makefile
rd4c472b r45ce950 329 329 endif 330 330 331 ifeq ($(CONFIG_FPU),y)332 ifeq ($(KARCH),ia32)333 TEST_FPU1 = y334 TEST_SSE1 = y335 GENERIC_SOURCES += test/fpu/fpu1_x86.c336 endif337 338 ifeq ($(KARCH),amd64)339 TEST_FPU1 = y340 TEST_SSE1 = y341 GENERIC_SOURCES += test/fpu/fpu1_x86.c342 endif343 344 ifeq ($(KARCH),ia64)345 TEST_FPU1 = y346 GENERIC_SOURCES += test/fpu/fpu1_ia64.c347 endif348 349 ifeq ($(KARCH),mips32)350 TEST_MIPS2 = y351 endif352 endif353 354 ifneq ($(TEST_FPU1),y)355 GENERIC_SOURCES += test/fpu/fpu1_skip.c356 endif357 358 ifeq ($(TEST_SSE1),y)359 GENERIC_SOURCES += test/fpu/sse1.c360 else361 GENERIC_SOURCES += test/fpu/sse1_skip.c362 endif363 364 ifeq ($(TEST_MIPS2),y)365 GENERIC_SOURCES += test/fpu/mips2.c366 else367 GENERIC_SOURCES += test/fpu/mips2_skip.c368 endif369 370 331 endif 371 332 -
kernel/test/test.c
rd4c472b r45ce950 43 43 #include <debug/mips1.def> 44 44 #include <fault/fault1.def> 45 #include <fpu/fpu1.def>46 #include <fpu/sse1.def>47 #include <fpu/mips2.def>48 45 #include <mm/falloc1.def> 49 46 #include <mm/falloc2.def> -
kernel/test/test.h
rd4c472b r45ce950 61 61 extern const char *test_mips1(void); 62 62 extern const char *test_fault1(void); 63 extern const char *test_fpu1(void);64 extern const char *test_sse1(void);65 extern const char *test_mips2(void);66 63 extern const char *test_falloc1(void); 67 64 extern const char *test_falloc2(void);
Note:
See TracChangeset
for help on using the changeset viewer.