Lines Matching refs:p2
87 const path p2(TC.RHS); in test_compare_basic() local
97 int ret1 = normalize_ret(p1.compare(p2)); in test_compare_basic()
109 ASSERT_NOEXCEPT(p1.compare(p2)); in test_compare_basic()
115 assert((p1 == p2) == (E == 0)); in test_compare_basic()
116 assert((p1 != p2) == (E != 0)); in test_compare_basic()
117 assert((p1 < p2) == (E < 0)); in test_compare_basic()
118 assert((p1 <= p2) == (E <= 0)); in test_compare_basic()
119 assert((p1 > p2) == (E > 0)); in test_compare_basic()
120 assert((p1 >= p2) == (E >= 0)); in test_compare_basic()
123 ASSERT_NOEXCEPT(p1 == p2); in test_compare_basic()
124 ASSERT_NOEXCEPT(p1 != p2); in test_compare_basic()
125 ASSERT_NOEXCEPT(p1 < p2); in test_compare_basic()
126 ASSERT_NOEXCEPT(p1 <= p2); in test_compare_basic()
127 ASSERT_NOEXCEPT(p1 > p2); in test_compare_basic()
128 ASSERT_NOEXCEPT(p1 >= p2); in test_compare_basic()
132 auto h2 = hash_value(p2); in test_compare_basic()
133 assert((h1 == h2) == (p1 == p2)); in test_compare_basic()