Merge "std::string from const hidl_string test"
am: dd92847469

Change-Id: Ie45cd650cd74078ec5b05ab248cb9d58848c4bc1
diff --git a/test_main.cpp b/test_main.cpp
index 7859156..658a7eb 100644
--- a/test_main.cpp
+++ b/test_main.cpp
@@ -94,6 +94,12 @@
     EXPECT_EQ(myString, "great");
     EXPECT_STREQ(anotherCString, "great");
 
+    const hidl_string t = "not so great";
+    std::string myTString = t;
+    const char * anotherTCString = t;
+    EXPECT_EQ(myTString, "not so great");
+    EXPECT_STREQ(anotherTCString, "not so great");
+
     // Comparisons
     const char * cstr1 = "abc";
     std::string string1(cstr1);