Skip to content

Commit

Permalink
Merge branch 'master' into feature/read_all
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Apr 18, 2017
2 parents 26ef4e0 + b53ab22 commit 5b470f3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion unittests/comprehensive/test_Collision.cpp
Expand Up @@ -705,7 +705,10 @@ void testSphereSphere(const std::shared_ptr<CollisionDetector>& cd,
else
{
EXPECT_TRUE(group->collide(option, &result));
EXPECT_EQ(result.getNumContacts(), 1u);
// TODO(JS): BulletCollsionDetector includes a bug related to this.
// (see #876)
if (cd->getType() != BulletCollisionDetector::getStaticType())
EXPECT_EQ(result.getNumContacts(), 1u);
for (auto i = 0u; i < result.getNumContacts(); ++i)
{
std::cout << "point: " << result.getContact(i).point.transpose() << std::endl;
Expand Down

0 comments on commit 5b470f3

Please sign in to comment.