summaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 36a52bc..3c7c904 100644
--- a/setup.py
+++ b/setup.py
@@ -715,6 +715,12 @@ class PyBuildExt(build_ext):
# syslog daemon interface
exts.append( Extension('syslog', ['syslogmodule.c']) )
+ # Fuzz tests.
+ exts.append( Extension(
+ '_xxtestfuzz',
+ ['_xxtestfuzz/_xxtestfuzz.c', '_xxtestfuzz/fuzzer.c'])
+ )
+
#
# Here ends the simple stuff. From here on, modules need certain
# libraries, are platform-specific, or present other surprises.