Skip to content

Commit

Permalink
Fixing b2 error
Browse files Browse the repository at this point in the history
  • Loading branch information
zajo committed Sep 27, 2024
1 parent bd5911c commit 6f98430
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/Jamfile.v2
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ run diagnostics_test4.cpp ;
run diagnostics_test5.cpp ;
run e_errno_test.cpp ;
run e_LastError_test.cpp ;
run error_code_test.cpp : <cxxstd>1z:<build>no ;
run error_code_test.cpp : : : <cxxstd>1z:<build>no:<testing>no ;
run error_id_test.cpp ;
run exception_test.cpp ;
run exception_to_result_test.cpp ;
Expand Down
4 changes: 2 additions & 2 deletions test/visibility_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ int main()
},
[](leaf::diagnostic_details const & vinfo)
{
std::cout "Test is failing\n" << vinfo;
std::cout << "Test is failing\n" << vinfo;
return 2;
} );
BOOST_TEST_EQ(r, 1);
Expand Down Expand Up @@ -82,7 +82,7 @@ int main()
},
[](leaf::diagnostic_details const & vinfo)
{
std::cout "Test is failing\n" << vinfo;
std::cout << "Test is failing\n" << vinfo;
return 2;
} );
BOOST_TEST_EQ(r, 1);
Expand Down

0 comments on commit 6f98430

Please sign in to comment.