Remove INTERNAL type from FailStatus enum 94/28694/8
authorMarcin Niesluchowski <m.niesluchow@samsung.com>
Mon, 13 Oct 2014 14:21:47 +0000 (16:21 +0200)
committerMarcin Niesluchowski <m.niesluchow@samsung.com>
Mon, 1 Dec 2014 17:02:58 +0000 (18:02 +0100)
commite4373c9cf33609d13114d4e6e33bc231bad01a68
treecd87a92797b5388cffc5a7c470b09e7c96056c54
parent1ab215b055a307206f00a6df23501269f0e52411
Remove INTERNAL type from FailStatus enum

INTERNAL fail status is treated as FAILED fail status. It is collected
in case of:
* DPL::Exception - should not be thrown by test cased body, as it is used
  in test framework only
* std::exception - which implies that test case is not constructed well
  or there is not enough resources, which may be also passed as Failed
  state in RUNNER_* macros.
* other exceptions - same as std::exception

Change-Id: I8776622afcb9d01739f8780183ad4c5f364deb25
tests/common/summary_collector.cpp
tests/framework/include/dpl/test/statistic.h
tests/framework/include/dpl/test/test_results_collector.h
tests/framework/src/test_results_collector_console.cpp
tests/framework/src/test_results_collector_html.cpp
tests/framework/src/test_results_collector_xml.cpp
tests/framework/src/test_runner.cpp
tests/framework/src/test_runner_multiprocess.cpp