2
0
mirror of https://github.com/boostorg/test.git synced 2026-01-30 20:32:10 +00:00
Files
test/test/test_exec_fail4.cpp
Gennadiy Rozental 8e78395827 licence update
[SVN r22883]
2004-05-21 06:26:11 +00:00

46 lines
1.2 KiB
C++

// (C) Copyright Gennadiy Rozental 2001-2004.
// (C) Copyright Beman Dawes 2001.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
// See http://www.boost.org/libs/test for the library home page.
//
// File : $RCSfile$
//
// Version : $Revision$
//
// Description : test failures reported by throwing the exception.
// Should fail during run.
// ***************************************************************************
// Boost.Test
#include <boost/test/test_tools.hpp>
int test_main( int argc, char* [] ) // note the name
{
BOOST_ERROR( "Msg" );
if( argc > 0 ) // to prevent the unreachable return warning
throw "Test error by throwing C-style string exception";
return 0;
}
//____________________________________________________________________________//
// ***************************************************************************
// Revision History :
//
// $Log$
// Revision 1.13 2004/05/21 06:26:11 rogeeff
// licence update
//
// Revision 1.12 2003/12/01 00:42:38 rogeeff
// prerelease cleaning
//
// ***************************************************************************
// EOF