/* * $Id: main.cpp 88 2008-12-10 18:31:39Z rosiere $ * * [ Description ] * */ #include "Behavioural/Core/Multi_OOO_Engine/OOO_Engine/Special_Register_unit/SelfTest/include/test.h" #define NB_PARAMS 2 void usage (int argc, char * argv[]) { err (_(" %s name_instance list_params.\n"),argv[0]); err (_("list_params is :\n")); err (_(" * nb_front_end (uint32_t)\n")); err (_(" * nb_context [nb_front_end] (uint32_t)\n")); err (_(" * nb_inst_reexecute (uint32_t)\n")); exit (1); } #ifndef SYSTEMC int main (int argc, char * argv[]) #else int sc_main (int argc, char * argv[]) #endif { if (argc <= static_cast(2+NB_PARAMS)) usage (argc, argv); uint32_t x = 1; string name = argv[x++]; uint32_t _nb_front_end = fromString(argv[x++]); if (argc != static_cast(2+NB_PARAMS+_nb_front_end)) usage (argc, argv); uint32_t * _nb_context = new uint32_t [_nb_front_end]; for (uint32_t i=0; i<_nb_front_end; i++) _nb_context [i] = fromString(argv[x++]); uint32_t _nb_inst_reexecute = fromString(argv[x++]); bool *** _implement_group = new bool ** [_nb_front_end]; for (uint32_t i=0; i<_nb_front_end; i++) { _implement_group [i] = new bool * [_nb_context[i]]; for (uint32_t j=0; j<_nb_context[i]; j++) { _implement_group [i][j] = new bool [NB_GROUP]; for (uint32_t k=0; kprint(0).c_str()); test (name,param); } catch (morpheo::ErrorMorpheo & error) { msg (_("<%s> :\n%s"),name.c_str(), error.what ()); _return = EXIT_FAILURE; } try { if (_return == EXIT_SUCCESS) TEST_OK("Special_Register_unit : no error"); else TEST_KO("Special_Register_unit : a lot of error"); } catch (morpheo::ErrorMorpheo & error) { // msg (_("<%s> :\n%s"),name.c_str(), error.what ()); _return = EXIT_FAILURE; } for (uint32_t i=0; i<_nb_front_end; i++) { for (uint32_t j=0; j<_nb_context[i]; j++) delete [] _implement_group [i][j]; delete [] _implement_group [i]; } delete [] _implement_group; delete [] _nb_context; return (_return); }