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

Unified Diff: tests/irt_ext/libc/libc_test.c

Issue 511253005: Added irt extension support for supplying the nacl_irt_memory interface. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Moved size declaration down Created 6 years, 4 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 | « tests/irt_ext/libc/libc_test.h ('k') | tests/irt_ext/libc/mem_tests.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/irt_ext/libc/libc_test.c
diff --git a/tests/irt_ext/libc/libc_test.c b/tests/irt_ext/libc/libc_test.c
index 507aea53ac7373b10d72f36c1e81bef6dd94879f..dfac8acc7118451f6e735b53aa3be05fcbbf03e2 100644
--- a/tests/irt_ext/libc/libc_test.c
+++ b/tests/irt_ext/libc/libc_test.c
@@ -6,7 +6,8 @@
#include "native_client/tests/irt_ext/error_report.h"
#include "native_client/tests/irt_ext/file_desc.h"
-#include "native_client/tests/irt_ext/libc/file_tests.h"
+#include "native_client/tests/irt_ext/mem_calls.h"
+#include "native_client/tests/irt_ext/libc/libc_test.h"
#include <stdio.h>
@@ -16,9 +17,11 @@ int main(void) {
/* Initialize the various modules. */
init_error_report_module();
init_file_desc_module();
+ init_mem_calls_module();
/* Run tests. */
ret += run_file_tests();
+ ret += run_mem_tests();
return ret;
}
« no previous file with comments | « tests/irt_ext/libc/libc_test.h ('k') | tests/irt_ext/libc/mem_tests.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698