summaryrefslogtreecommitdiffstats
path: root/netlegacy.py
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2021-02-26 23:26:07 -0700
committerVijay Kumar Banerjee <vijay@rtems.org>2021-03-02 14:32:11 -0700
commit81a5cc1a10453342a74a59ac84e6fd7e406d5b0b (patch)
tree33ac0a93d6ae6f90f0c954d68c1f90cfc61e696f /netlegacy.py
parentAdd telnetd (diff)
downloadrtems-net-legacy-81a5cc1a10453342a74a59ac84e6fd7e406d5b0b.tar.bz2
Add legacy networking tests from RTEMS
Diffstat (limited to 'netlegacy.py')
-rw-r--r--netlegacy.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/netlegacy.py b/netlegacy.py
index 91cbedd..037e2ee 100644
--- a/netlegacy.py
+++ b/netlegacy.py
@@ -31,7 +31,6 @@ import os
source_files = []
include_files = {}
-test_source = []
exclude_dirs = ['pppd', 'nfsclient', 'testsuites', 'librpc/include', 'bsps']
exclude_headers = ['rtems-bsd-user-space.h', 'rtems-bsd-kernel-space.h']
@@ -45,11 +44,6 @@ for root, dirs, files in os.walk("."):
if name[-2:] == '.h' and name not in exclude_headers:
include_files[root[2:]].append(os.path.join(root, name))
-for root, dirs, files in os.walk('./testsuites'):
- for name in files:
- if name[-2:] == '.c':
- test_source.append(os.path.join(root, name))
-
def build(bld):
include_path = []
@@ -98,12 +92,6 @@ def build(bld):
features='c cstlib',
use=['bsp_objs', 'network_objects'])
- bld.program(target='networking01.exe',
- features='c cprogram',
- cflags=['-O2', '-g'],
- includes=ip,
- use='networking',
- source=test_source)
bld.stlib(target='pppd',
features='c',
includes=ip,