File ns3-3.17-tests.patch of Package ns3
Index: src/test/wscript
===================================================================
--- src/test/wscript.orig
+++ src/test/wscript
@@ -16,6 +16,7 @@ def build(bld):
return
test = bld.create_ns3_module('test', ['internet', 'mobility', 'applications', 'csma', 'bridge', 'config-store', 'point-to-point', 'csma-layout', 'flow-monitor', 'wifi'])
+ test.install_path = None
headers = bld(features='ns3header')
headers.module = 'test'
@@ -27,13 +28,10 @@ def build(bld):
'mobility-test-suite.cc',
'ns3wifi/wifi-interference-test-suite.cc',
'ns3wifi/wifi-msdu-aggregator-test-suite.cc',
- 'ns3tcp/ns3tcp-cwnd-test-suite.cc',
- 'ns3tcp/ns3tcp-interop-test-suite.cc',
'ns3tcp/ns3tcp-loss-test-suite.cc',
'ns3tcp/ns3tcp-no-delay-test-suite.cc',
'ns3tcp/ns3tcp-socket-test-suite.cc',
'ns3tcp/ns3tcp-state-test-suite.cc',
- 'ns3tcp/nsctcp-loss-test-suite.cc',
'ns3tcp/ns3tcp-socket-writer.cc',
]
Index: src/wscript
===================================================================
--- src/wscript.orig
+++ src/wscript
@@ -150,6 +150,7 @@ def create_ns3_module_test_library(bld,
library_name = name + "-test"
library = bld.create_ns3_module(library_name, [name], test=True)
library.features += " ns3testlib"
+ library.install_path = None
# Modify attributes for the test library that are different from a
# normal module.