Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1643)

Unified Diff: runtime/bin/run_vm_tests_fuchsia.cc

Issue 2337883004: [fuchsia] Add InitialRSS to status list, add missing launchpad call. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/run_vm_tests_fuchsia.cc
diff --git a/runtime/bin/run_vm_tests_fuchsia.cc b/runtime/bin/run_vm_tests_fuchsia.cc
index 4525a7f02786488da7f2940e6b73b1c720d13159..8137a59873803565dc851e995dc022b2a8cc2c5f 100644
--- a/runtime/bin/run_vm_tests_fuchsia.cc
+++ b/runtime/bin/run_vm_tests_fuchsia.cc
@@ -109,6 +109,8 @@ const char* kBugs[] = {
"DirectoryCreateDelete",
// Needs rename
"DirectoryRename",
+ // Needs read of RSS.
+ "InitialRSS",
};
@@ -168,6 +170,8 @@ static mx_status_t lp_setup(launchpad_t** lp_out, mx_handle_t binary_vmo,
RETURN_IF_ERROR(status);
status = launchpad_add_pipe(lp, stderr_out, 2);
RETURN_IF_ERROR(status);
+ status = launchpad_add_vdso_vmo(lp);
+ RETURN_IF_ERROR(status);
status = launchpad_elf_load(lp, binary_vmo);
RETURN_IF_ERROR(status);
status = launchpad_load_vdso(lp, MX_HANDLE_INVALID);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698