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

Unified Diff: src/trusted/service_runtime/sel_ldr_test.cc

Issue 1656133002: Cleanup: Remove various unused functions related to loading nexes over SRPC (Closed) Base URL: https://chromium.googlesource.com/native_client/src/native_client.git@master
Patch Set: Created 4 years, 11 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 | « src/trusted/service_runtime/sel_ldr.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/service_runtime/sel_ldr_test.cc
diff --git a/src/trusted/service_runtime/sel_ldr_test.cc b/src/trusted/service_runtime/sel_ldr_test.cc
index afeb632ddcc0a508637b01e123d01bc03b145050..5a393e2f66299d137bd77d6d520d70477d8d472b 100644
--- a/src/trusted/service_runtime/sel_ldr_test.cc
+++ b/src/trusted/service_runtime/sel_ldr_test.cc
@@ -116,23 +116,6 @@ TEST_F(SelLdrTest, DescTable) {
ASSERT_TRUE(NULL == ret_desc);
}
-// create service socket
-TEST_F(SelLdrTest, CreateServiceSocket) {
- struct NaClApp app;
- int ret_code;
-
- ret_code = NaClAppCtor(&app);
- ASSERT_EQ(1, ret_code);
-
- // CreateServiceSocket sets the app service_port to a service port
- // desc and service_address to a service
- ASSERT_TRUE(NULL == app.service_port);
- ASSERT_TRUE(NULL == app.service_address);
- NaClCreateServiceSocket(&app);
- ASSERT_TRUE(NULL != app.service_port);
- ASSERT_TRUE(NULL != app.service_address);
-}
-
// add and remove operations on the threads table
// Remove thread from an empty table is tested in a death test.
// TODO(tuduce): specify the death test name when checking in.
« no previous file with comments | « src/trusted/service_runtime/sel_ldr.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698