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. |