author | Tom Henderson <tomh@tomh.org> |
Fri, 05 Mar 2010 11:56:10 -0800 | |
changeset 6109 | c204cb0f18d8 |
parent 6034 | de2824cc388d |
child 6613 | ddc45ac0ff8e |
permissions | -rw-r--r-- |
5270 | 1 |
## -*- Mode: python; py-indent-offset: 4; indent-tabs-mode: nil; coding: utf-8; -*- |
2 |
||
6034
de2824cc388d
add a place for perf tests
Craig Dowell <craigdo@ee.washington.edu>
parents:
5270
diff
changeset
|
3 |
def configure(conf): |
de2824cc388d
add a place for perf tests
Craig Dowell <craigdo@ee.washington.edu>
parents:
5270
diff
changeset
|
4 |
conf.sub_config('perf') |
de2824cc388d
add a place for perf tests
Craig Dowell <craigdo@ee.washington.edu>
parents:
5270
diff
changeset
|
5 |
|
5270 | 6 |
def build(bld): |
7 |
test = bld.create_ns3_module('test', ['core']) |
|
8 |
test.source = [ |
|
9 |
'sample-test-suite.cc', |
|
6109
c204cb0f18d8
[Bug 414] No error model for SimpleNetDevice
Tom Henderson <tomh@tomh.org>
parents:
6034
diff
changeset
|
10 |
'error-model-test-suite.cc', |
5270 | 11 |
] |
12 |
||
13 |
headers = bld.new_task_gen('ns3header') |
|
14 |
headers.module = 'test' |
|
15 |
headers.source = [ |
|
16 |
] |