mirror of
https://github.com/boostorg/core.git
synced 2025-08-01 05:44:35 +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 ;
|
use-project /boost/core/swap : ./swap ;
|
||||||
build-project ./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