aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuildbot_test_toolchains.py2
-rwxr-xr-xtest_toolchains.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/buildbot_test_toolchains.py b/buildbot_test_toolchains.py
index 9b8a79fd..c49e9c5a 100755
--- a/buildbot_test_toolchains.py
+++ b/buildbot_test_toolchains.py
@@ -126,7 +126,7 @@ class ToolchainComparator():
crosperf = os.path.join(TOOLCHAIN_DIR,
"crosperf",
"crosperf")
- command = ("%s --no_email=True --use_file_locks=True --results_dir=%s %s" %
+ command = ("%s --no_email=True --results_dir=%s %s" %
(crosperf, self._reports_dir, experiment_file))
ret = self._ce.RunCommand(command)
diff --git a/test_toolchains.py b/test_toolchains.py
index 2c9356b5..753dbb9d 100755
--- a/test_toolchains.py
+++ b/test_toolchains.py
@@ -240,7 +240,7 @@ class ToolchainComparator(ChromeOSCheckout):
crosperf = os.path.join(os.path.dirname(__file__),
"crosperf",
"crosperf")
- command = ("%s --no_email=True --use_file_locks=True --results_dir=%s %s" %
+ command = ("%s --no_email=True --results_dir=%s %s" %
(crosperf, self._reports_dir, experiment_file))
ret = self._ce.RunCommand(command)