Files
unison/src/test/wscript

21 lines
558 B
Plaintext
Raw Normal View History

2009-09-27 23:51:23 -07:00
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*-
2010-01-29 15:01:07 -08:00
def configure(conf):
conf.sub_config('perf')
2009-09-27 23:51:23 -07:00
def build(bld):
test = bld.create_ns3_module('test', ['core'])
test.source = [
2010-10-15 16:31:32 -07:00
'csma-system-test-suite.cc',
'global-routing-test-suite.cc',
2009-09-27 23:51:23 -07:00
'sample-test-suite.cc',
2010-10-15 16:31:32 -07:00
'static-routing-test-suite.cc',
'error-model-test-suite.cc',
'mobility-test-suite.cc',
2009-09-27 23:51:23 -07:00
]
headers = bld.new_task_gen('ns3header')
headers.module = 'test'
headers.source = [
]