summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-16 00:44:31 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-16 00:46:34 +0100
commit19760ad4cf6d348416444e515b5e709be565f81e (patch)
tree55c889deb559ce325fd436bdfb8b97170a15e14c /wscript
parent3e3e8433842820ce6380e8f5c1917ae1a28e2e57 (diff)
Move stress testing code into a separate class and always build it.
Fix stress script generation to always reload a DCP rather than expecting it to be available after it has finished playback.
Diffstat (limited to 'wscript')
-rw-r--r--wscript4
1 files changed, 0 insertions, 4 deletions
diff --git a/wscript b/wscript
index c61b86782..fe1431316 100644
--- a/wscript
+++ b/wscript
@@ -73,7 +73,6 @@ def options(opt):
opt.add_option('--workaround-gssapi', action='store_true', default=False, help='link to gssapi_krb5')
opt.add_option('--force-cpp11', action='store_true', default=False, help='force use of C++11')
opt.add_option('--variant', help='build variant (swaroop-studio, swaroop-theater)', choices=['swaroop-studio', 'swaroop-theater'])
- opt.add_option('--enable-player-stress-test', action='store_true', default=False, help='build the player with stress testing enabled')
opt.add_option('--use-lld', action='store_true', default=False, help='use lld linker')
def configure(conf):
@@ -134,9 +133,6 @@ def configure(conf):
if conf.options.variant.startswith('swaroop-'):
conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_VARIANT_SWAROOP')
- if conf.options.enable_player_stress_test:
- conf.env.append_value('CXXFLAGS', '-DDCPOMATIC_PLAYER_STRESS_TEST')
-
if conf.options.use_lld:
try:
conf.find_program('ld.lld')