# HG changeset patch # User stuefe # Date 1482055069 -3600 # Node ID ff634f19e82c37603a6828b921d869e60c413406 # Parent af1346a135ce902a60594d2a432dc2c79424c700 8171225: [aix] Fix gtests compile error on AIX 7.1 with xlC 12 Summary: Help xlC understand gtest asserts Reviewed-by: erikj, dholmes, simonis diff -r af1346a135ce -r ff634f19e82c hotspot/test/native/utilities/test_linkedlist.cpp --- a/hotspot/test/native/utilities/test_linkedlist.cpp Tue Dec 20 17:35:20 2016 +0300 +++ b/hotspot/test/native/utilities/test_linkedlist.cpp Sun Dec 18 10:57:49 2016 +0100 @@ -74,7 +74,7 @@ ASSERT_EQ(six.value(), i->value()) << "Should be 6"; i = ll.find(three); - ASSERT_EQ(NULL, i) << "Not in the list"; + ASSERT_TRUE(i == NULL) << "Not in the list"; LinkedListNode* node = ll.find_node(six); ASSERT_TRUE(node != NULL) << "6 is in the list";