aboutsummaryrefslogtreecommitdiffstats
path: root/boostTest.cpp
diff options
context:
space:
mode:
authorDimitry <dimitry@ethdev.com>2015-08-13 17:18:29 +0800
committerDimitry <dimitry@ethdev.com>2015-08-13 17:18:29 +0800
commit5cfacc2e7af9219064d2e3a306d4b74156d8e390 (patch)
tree1a1d550e64ee3405f2a40ab46085692ea53e33fd /boostTest.cpp
parent4de035e5badf8bf4658b39c27813e042afb87f9e (diff)
downloaddexon-solidity-5cfacc2e7af9219064d2e3a306d4b74156d8e390.tar.gz
dexon-solidity-5cfacc2e7af9219064d2e3a306d4b74156d8e390.tar.zst
dexon-solidity-5cfacc2e7af9219064d2e3a306d4b74156d8e390.zip
Error report: style issues
Diffstat (limited to 'boostTest.cpp')
-rw-r--r--boostTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boostTest.cpp b/boostTest.cpp
index 79ed27ab..824a8e8e 100644
--- a/boostTest.cpp
+++ b/boostTest.cpp
@@ -62,20 +62,20 @@ int main( int argc, char* argv[] )
? boost::exit_success
: results_collector.results( framework::master_test_suite().p_id ).result_code();
}
- catch( framework::nothing_to_test const& ) {
+ catch (framework::nothing_to_test const&) {
return boost::exit_success;
}
- catch( framework::internal_error const& ex ) {
+ catch (framework::internal_error const& ex) {
results_reporter::get_stream() << "Boost.Test framework internal error: " << ex.what() << std::endl;
return boost::exit_exception_failure;
}
- catch( framework::setup_error const& ex ) {
+ catch (framework::setup_error const& ex) {
results_reporter::get_stream() << "Test setup error: " << ex.what() << std::endl;
return boost::exit_exception_failure;
}
- catch( ... ) {
+ catch (...) {
results_reporter::get_stream() << "Boost.Test framework internal error: unknown reason" << std::endl;
return boost::exit_exception_failure;