/* * $Id$ * * [ Description ] * */ #include "Behavioural/@DIRECTORY/SelfTest/include/test.h" #define NB_PARAMS 0 void usage (int argc, char * argv[]) { err (_(" %s name_instance list_params.\n"),argv[0]); err (_("list_params is :\n")); exit (1); } #ifndef SYSTEMC int main (int argc, char * argv[]) #else int sc_main (int argc, char * argv[]) #endif { if (argc != 2+NB_PARAMS) usage (argc, argv); uint32_t x = 1; const string name = argv[x++]; //const uint32_t size_data = atoi(argv[x++]); //const uint32_t nb_port = atoi(argv[x++]); try { morpheo::behavioural::@NAMESPACE_USE::Parameters * param = new morpheo::behavioural::@NAMESPACE_USE::Parameters (//size_data, //nb_port ); msg(_("%s"),param->print(1).c_str()): test (name,param); } catch (morpheo::ErrorMorpheo & error) { msg (_("<%s> : %s.\n"),name, error.what ()); exit (EXIT_FAILURE); } catch (...) { err (_("<%s> : This test must generate a error.\n"),name); exit (EXIT_FAILURE); } return (EXIT_SUCCESS); }