Fix verify cert on measure_both
This commit is contained in:
parent
49dc671c31
commit
6272ed193b
1 changed files with 3 additions and 2 deletions
5
exp.py
5
exp.py
|
|
@ -136,7 +136,8 @@ CONFIGS = {
|
||||||
#{ "filename": "yt2-ublock", "repeat": 10000, "time": 1200, "reproduce": 1 },
|
#{ "filename": "yt2-ublock", "repeat": 10000, "time": 1200, "reproduce": 1 },
|
||||||
#{ "filename": "wp2", "repeat": 10000, "time": 300, "reproduce": 100 },
|
#{ "filename": "wp2", "repeat": 10000, "time": 300, "reproduce": 100 },
|
||||||
#{ "filename": "guardian", "realistic": True, "repeat": 10000, "time": 60, "reproduce": 1 },
|
#{ "filename": "guardian", "realistic": True, "repeat": 10000, "time": 60, "reproduce": 1 },
|
||||||
{ "filename": "wikipedia", "realistic": True, "repeat": 10000, "time": 120, "reproduce": 10 },
|
#{ "filename": "wikipedia", "realistic": True, "repeat": 10000, "time": 120, "reproduce": 10 },
|
||||||
|
{ "filename": "zimbra", "realistic": True, "repeat": 10000, "time": 60, "reproduce": 10 },
|
||||||
],
|
],
|
||||||
"repo_dir": "/home/tuxmain/reps/tlsbench",
|
"repo_dir": "/home/tuxmain/reps/tlsbench",
|
||||||
"exp_dir": "/dev/shm/exp",
|
"exp_dir": "/dev/shm/exp",
|
||||||
|
|
@ -955,7 +956,7 @@ def run_exp(config, only_record=None, idle=False, shutdown=False, debug=False):
|
||||||
debug=debug,
|
debug=debug,
|
||||||
notify_addr=config["notify_addr"],
|
notify_addr=config["notify_addr"],
|
||||||
ld_preload=config["ld_preload"] if "ld_preload" in config else None,
|
ld_preload=config["ld_preload"] if "ld_preload" in config else None,
|
||||||
skip_verif=True,
|
skip_verif=not config["measure_both"],
|
||||||
concurrency=config.get("concurrency"),
|
concurrency=config.get("concurrency"),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue