xref: /haiku/src/tests/system/libroot/os/Jamfile (revision 21258e2674226d6aa732321b6f8494841895af5f)
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# Tell Jam where to find these sources
32SEARCH on [ FGristFiles
33		driver_settings.cpp
34		parsedate.cpp
35	] = [ FDirName $(HAIKU_TOP) src system libroot os ] ;
36