diff options
author | Jack Lloyd <[email protected]> | 2019-05-23 15:23:22 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-05-23 15:23:22 -0400 |
commit | bfabccebc50be8b8f18a3041a7e08b35c56d1cee (patch) | |
tree | 59b1a8be89c8cc3ca0f5a40da02c1654215033ef /src | |
parent | 6431d07ac49903798bbea1a34c0109a5e3a21fdd (diff) |
Fix lint
Diffstat (limited to 'src')
-rwxr-xr-x | src/scripts/ci_build.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index a2b55d35c..7086ed1c7 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -486,10 +486,10 @@ def main(args=None): runner_dir = os.path.abspath(os.path.join(root_dir, 'boringssl', 'ssl', 'test', 'runner')) cmds.append(['indir:%s' % (runner_dir), - 'go', 'test', '-pipe', - '-num-workers', str(4*get_concurrency()), - '-shim-path', os.path.abspath(os.path.join(root_dir, 'botan_bogo_shim')), - '-shim-config', os.path.abspath(os.path.join(root_dir, 'src', 'bogo_shim', 'config.json'))]) + 'go', 'test', '-pipe', + '-num-workers', str(4*get_concurrency()), + '-shim-path', os.path.abspath(os.path.join(root_dir, 'botan_bogo_shim')), + '-shim-config', os.path.abspath(os.path.join(root_dir, 'src', 'bogo_shim', 'config.json'))]) if target in ['coverage', 'fuzzers']: cmds.append([py_interp, os.path.join(root_dir, 'src/scripts/test_fuzzers.py'), |