diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -130,3 +130,15 @@ rt.Program('rt_launch', ['bin/rt_launch.c', 'bin/common.c']) | |||
130 | rt.Program('rtspin', ['bin/rtspin.c', 'bin/common.c']) | 130 | rt.Program('rtspin', ['bin/rtspin.c', 'bin/common.c']) |
131 | rt.Program('release_ts', 'bin/release_ts.c') | 131 | rt.Program('release_ts', 'bin/release_ts.c') |
132 | rtm.Program('measure_syscall', 'bin/null_call.c') | 132 | rtm.Program('measure_syscall', 'bin/null_call.c') |
133 | |||
134 | |||
135 | # ##################################################################### | ||
136 | # Test suite. | ||
137 | |||
138 | mkc = Builder(action = 'tests/make_catalog.py $SOURCE > $TARGET') | ||
139 | test = mtrt.Clone() | ||
140 | test.Append(BUILDERS = {'TestCatalog' : mkc}) | ||
141 | test.Append(CPPPATH = ['tests/']) | ||
142 | |||
143 | catalog = test.TestCatalog('tests/__test_catalog.inc', Glob('tests/*.c')) | ||
144 | test.Program('runtests', Glob('tests/*.c')) | ||