mirror of
https://github.com/boostorg/core.git
synced 2025-07-31 13:27:29 +02:00
Add crtdbg_test.cpp to see what happens on Appveyor
This commit is contained in:
@ -169,3 +169,5 @@ run no_exceptions_support_test.cpp : : : <exception-handling>off : no_exceptions
|
||||
|
||||
use-project /boost/core/swap : ./swap ;
|
||||
build-project ./swap ;
|
||||
|
||||
run crtdbg_test.cpp ;
|
||||
|
13
test/crtdbg_test.cpp
Normal file
13
test/crtdbg_test.cpp
Normal file
@ -0,0 +1,13 @@
|
||||
#include <boost/core/lightweight_test.hpp>
|
||||
#include <vector>
|
||||
|
||||
int main()
|
||||
{
|
||||
BOOST_TEST(true);
|
||||
|
||||
std::vector<int> v;
|
||||
std::vector<int>::iterator i = v.end();
|
||||
++i;
|
||||
|
||||
return boost::report_errors();
|
||||
}
|
Reference in New Issue
Block a user