Commit 79cbcdf6 authored by Wez's avatar Wez Committed by Commit Bot

Roll-back Fuchsia SDK to the last-known-good version.

Recent SDK builds have a broken 'pm archive' command, so builds have not
actually been rebuilding the package archives, and things have only been
"working" because our GN rules are broken in such a way that ninja
doesn't notice the brokenness.

TBR: thakis
Bug: 859955
Change-Id: Ic71ccee289d4cee532f539e19f4d9baa63408e0a
Reviewed-on: https://chromium-review.googlesource.com/1125214Reviewed-by: default avatarWez <wez@chromium.org>
Reviewed-by: default avatarSergey Ulanov <sergeyu@chromium.org>
Commit-Queue: Wez <wez@chromium.org>
Cr-Commit-Position: refs/heads/master@{#572378}
parent db2d4ad7
...@@ -321,8 +321,7 @@ int LaunchChildTestProcessWithOptions(const CommandLine& command_line, ...@@ -321,8 +321,7 @@ int LaunchChildTestProcessWithOptions(const CommandLine& command_line,
DCHECK(!new_options.job_handle); DCHECK(!new_options.job_handle);
zx::job job_handle; zx::job job_handle;
zx_status_t result = zx_status_t result = zx::job::create(GetDefaultJob(), 0, &job_handle);
zx::job::create(*zx::unowned<zx::job>(GetDefaultJob()), 0, &job_handle);
ZX_CHECK(ZX_OK == result, result) << "zx_job_create"; ZX_CHECK(ZX_OK == result, result) << "zx_job_create";
new_options.job_handle = job_handle.get(); new_options.job_handle = job_handle.get();
#endif // defined(OS_FUCHSIA) #endif // defined(OS_FUCHSIA)
......
6fc35700f75536dcda881fbacf00148009242a4a 4d52071a7689a36752023349a1927ad7a6de168c
\ No newline at end of file
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