summaryrefslogtreecommitdiff
path: root/testsuites/ftp01/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/ftp01/wscript')
-rw-r--r--testsuites/ftp01/wscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/testsuites/ftp01/wscript b/testsuites/ftp01/wscript
index 550b0b5..6826584 100644
--- a/testsuites/ftp01/wscript
+++ b/testsuites/ftp01/wscript
@@ -39,11 +39,13 @@ def configure(conf):
def build(bld):
source = ['init.c']
+ cflags = bld.env.OPTIMIZATION + bld.env.WARNINGS + ['-g']
bld.program(target='ftp01.exe',
features='c cprogram',
- cflags=bld.env.OPTIMIZATION + ['-g'],
+ cflags=cflags,
includes=bld.env.IFLAGS,
lib=['ftpfs', 'ftpd', 'networking'],
libpath=['.'],
+ use=['testsupport'],
source=source,
install_path=False)