xref: /haiku/src/tests/system/libroot/os/Jamfile (revision 610f99c838cb661ff85377789ffd3ad4ff672a08)
1SubDir HAIKU_TOP src tests system libroot os ;
2
3SimpleTest DriverSettingsTest :
4	DriverSettingsTest.cpp
5	driver_settings.cpp
6	: be
7;
8
9SimpleTest ParseDateTest :
10	ParseDateTest.cpp parsedate.cpp
11;
12
13SimpleTest FindDirectoryTest :
14	FindDirectoryTest.cpp
15;
16
17SimpleTest fs_attr_test :
18	fs_attr_test.cpp
19;
20
21UsePrivateHeaders kernel system ;
22
23SimpleTest system_watching_test :
24	system_watching_test.cpp
25;
26
27SimpleTest get_cpu_num_test :
28	get_cpu_num_test.cpp
29;
30
31
32CCFLAGS += -fstack-protector ;
33local architectureObject ;
34for architectureObject in [ MultiArchSubDirSetup ] {
35	on $(architectureObject) {
36		SimpleTest [ MultiArchDefaultGristFiles stack_protector_test ] :
37			stack_protector_test.c
38		;
39	}
40}
41
42
43# Tell Jam where to find these sources
44SEARCH on [ FGristFiles
45		driver_settings.cpp
46		parsedate.cpp
47	] = [ FDirName $(HAIKU_TOP) src system libroot os ] ;
48