Subversion Repositories HelenOS

Rev

Rev 4342 | Rev 4345 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4342 Rev 4343
Line 244... Line 244...
244
	GENERIC_SOURCES += \
244
	GENERIC_SOURCES += \
245
		test/test.c \
245
		test/test.c \
246
		test/atomic/atomic1.c \
246
		test/atomic/atomic1.c \
247
		test/btree/btree1.c \
247
		test/btree/btree1.c \
248
		test/avltree/avltree1.c \
248
		test/avltree/avltree1.c \
249
		test/debug/mips1.c \
-
 
250
		test/fault/fault1.c \
249
		test/fault/fault1.c \
251
		test/mm/falloc1.c \
250
		test/mm/falloc1.c \
252
		test/mm/falloc2.c \
251
		test/mm/falloc2.c \
253
		test/mm/mapping1.c \
252
		test/mm/mapping1.c \
254
		test/mm/slab1.c \
253
		test/mm/slab1.c \
255
		test/mm/slab2.c \
254
		test/mm/slab2.c \
256
		test/mm/purge1.c \
-
 
257
		test/synch/rwlock1.c \
255
		test/synch/rwlock1.c \
258
		test/synch/rwlock2.c \
256
		test/synch/rwlock2.c \
259
		test/synch/rwlock3.c \
257
		test/synch/rwlock3.c \
260
		test/synch/rwlock4.c \
258
		test/synch/rwlock4.c \
261
		test/synch/rwlock5.c \
259
		test/synch/rwlock5.c \
Line 263... Line 261...
263
		test/synch/semaphore2.c \
261
		test/synch/semaphore2.c \
264
		test/print/print1.c \
262
		test/print/print1.c \
265
		test/thread/thread1.c \
263
		test/thread/thread1.c \
266
		test/sysinfo/sysinfo1.c
264
		test/sysinfo/sysinfo1.c
267
	
265
	
-
 
266
	ifeq ($(KARCH),mips32)
-
 
267
		GENERIC_SOURCES += test/debug/mips1.c
-
 
268
	else
-
 
269
		GENERIC_SOURCES += test/debug/mips1_skip.c
-
 
270
	endif
-
 
271
	
-
 
272
	ifeq ($(KARCH),ia64)
-
 
273
		GENERIC_SOURCES += test/mm/purge1.c
-
 
274
	else
-
 
275
		GENERIC_SOURCES += test/mm/purge1_skip.c
-
 
276
	endif
-
 
277
	
268
	ifeq ($(CONFIG_FPU),y)
278
	ifeq ($(CONFIG_FPU),y)
269
		ifeq ($(KARCH),ia32)
279
		ifeq ($(KARCH),ia32)
270
			TEST_FPU1 = y
280
			TEST_FPU1 = y
271
			TEST_SSE1 = y
281
			TEST_SSE1 = y
-
 
282
			GENERIC_SOURCES += test/fpu/fpu1_x86.c
272
		endif
283
		endif
273
		
284
		
274
		ifeq ($(KARCH),amd64)
285
		ifeq ($(KARCH),amd64)
275
			TEST_FPU1 = y
286
			TEST_FPU1 = y
276
			TEST_SSE1 = y
287
			TEST_SSE1 = y
-
 
288
			GENERIC_SOURCES += test/fpu/fpu1_x86.c
277
		endif
289
		endif
278
		
290
		
279
		ifeq ($(KARCH),ia64)
291
		ifeq ($(KARCH),ia64)
280
			TEST_FPU1 = y
292
			TEST_FPU1 = y
-
 
293
			GENERIC_SOURCES += test/fpu/fpu1_ia64.c
281
		endif
294
		endif
282
		
295
		
283
		ifeq ($(KARCH),mips32)
296
		ifeq ($(KARCH),mips32)
284
			TEST_MIPS2 = y
297
			TEST_MIPS2 = y
285
		endif
298
		endif
286
	endif
299
	endif
287
	
300
	
288
	ifeq ($(TEST_FPU1),y)
301
	ifneq ($(TEST_FPU1),y)
289
		GENERIC_SOURCES += test/fpu/fpu1.c
-
 
290
	else
-
 
291
		GENERIC_SOURCES += test/fpu/fpu1_skip.c
302
		GENERIC_SOURCES += test/fpu/fpu1_skip.c
292
	endif
303
	endif
293
	
304
	
294
	ifeq ($(TEST_SSE1),y)
305
	ifeq ($(TEST_SSE1),y)
295
		GENERIC_SOURCES += test/fpu/sse1.c
306
		GENERIC_SOURCES += test/fpu/sse1.c