summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinfra/scripts/runtest_wrapper.py3
-rw-r--r--testing/scripts/common.py1
2 files changed, 0 insertions, 4 deletions
diff --git a/infra/scripts/runtest_wrapper.py b/infra/scripts/runtest_wrapper.py
index fe9835f..e97f125 100755
--- a/infra/scripts/runtest_wrapper.py
+++ b/infra/scripts/runtest_wrapper.py
@@ -19,9 +19,6 @@ SRC_DIR = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))
def main(argv):
parser = argparse.ArgumentParser()
- # TODO(phajdan.jr): Remove after cleaning up build repo side.
- parser.add_argument(
- '--path-build', help='Path to the build repo')
parser.add_argument('args', nargs='*', help='Arguments to pass to runtest.py')
args = parser.parse_args(argv)
diff --git a/testing/scripts/common.py b/testing/scripts/common.py
index c27f5d4..dabd96e 100644
--- a/testing/scripts/common.py
+++ b/testing/scripts/common.py
@@ -72,7 +72,6 @@ def run_runtest(cmd_args, runtest_args):
sys.executable,
os.path.join(
cmd_args.paths['checkout'], 'infra', 'scripts', 'runtest_wrapper.py'),
- '--path-build', cmd_args.paths['build'],
'--',
]
else: