Skip to content

Commit

Permalink
Printing more diagnostic info to debug ci failures
Browse files Browse the repository at this point in the history
  • Loading branch information
zajo committed Sep 26, 2024
1 parent 87cc0b0 commit bd5911c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/visibility_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,9 @@ int main()
}
return 1;
},
[]
[](leaf::diagnostic_details const & vinfo)
{
std::cout "Test is failing\n" << vinfo;
return 2;
} );
BOOST_TEST_EQ(r, 1);
Expand Down Expand Up @@ -79,8 +80,9 @@ int main()
}
return 1;
},
[]
[](leaf::diagnostic_details const & vinfo)
{
std::cout "Test is failing\n" << vinfo;
return 2;
} );
BOOST_TEST_EQ(r, 1);
Expand Down

0 comments on commit bd5911c

Please sign in to comment.