Commit 5b5e814e authored by Xavier Deguillard's avatar Xavier Deguillard Committed by Facebook GitHub Bot

testpilot: testpilot is broken on Sandcastle

Summary: Hack to use parexec and the par directly.

Reviewed By: chadaustin

Differential Revision: D29461444

fbshipit-source-id: 9ac6c1aa43728782b8de0a71446109f7fd5dab1d
parent ec15ad3d
...@@ -726,7 +726,8 @@ if __name__ == "__main__": ...@@ -726,7 +726,8 @@ if __name__ == "__main__":
if platform == "win32": if platform == "win32":
machine_suffix = self.build_opts.host_type.as_tuple_string() machine_suffix = self.build_opts.host_type.as_tuple_string()
testpilot_args = [ testpilot_args = [
testpilot, "parexec-testinfra.exe",
"C:/tools/testpilot/sc_testpilot.par",
# Need to force the repo type otherwise testpilot on windows # Need to force the repo type otherwise testpilot on windows
# can be confused (presumably sparse profile related) # can be confused (presumably sparse profile related)
"--force-repo", "--force-repo",
...@@ -740,7 +741,6 @@ if __name__ == "__main__": ...@@ -740,7 +741,6 @@ if __name__ == "__main__":
"--test-config", "--test-config",
"platform=%s" % machine_suffix, "platform=%s" % machine_suffix,
"buildsystem=getdeps", "buildsystem=getdeps",
"--print-long-results",
] ]
else: else:
testpilot_args = [ testpilot_args = [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment