source: trunk/IPs/systemC/processor/Morpheo/Behavioural/New_Component/SelfTest/src/main.cpp @ 62

Last change on this file since 62 was 62, checked in by rosiere, 17 years ago

Modification en profondeur de Component-port_map.
Compilation ok pour Register_unit ... a tester (systemC et vhdl)

File size: 1.3 KB
Line 
1/*
2 * $Id$
3 *
4 * [ Description ]
5 *
6 */
7
8#include "Behavioural/@DIRECTORY/SelfTest/include/test.h"
9
10#define NB_PARAMS 0
11
12void usage (int argc, char * argv[])
13{
14  cerr << "<Usage> " << argv[0] << " name_instance list_params" << endl
15       << "list_params is :" << endl
16//     << " - size_data     (unsigned int)" << endl
17//     << " - nb_port       (unsigned int)" << endl;
18       << "" << endl;
19
20  for (int i=0; i<argc; i++)
21    cerr << argv[i] << " ";
22  cerr << endl;
23
24  exit (1);
25}
26
27#ifndef SYSTEMC
28int main    (int argc, char * argv[])
29#else
30int sc_main (int argc, char * argv[])
31#endif
32{
33  if (argc != 2+NB_PARAMS)
34    usage (argc, argv);
35
36  uint32_t       x = 1;
37
38  const string   name      =      argv[x++];
39//const uint32_t size_data = atoi(argv[x++]);
40//const uint32_t nb_port   = atoi(argv[x++]);
41
42  try 
43    {
44      morpheo::behavioural::@NAMESPACE_USE::Parameters * param = new morpheo::behavioural::@NAMESPACE_USE::Parameters
45        (//size_data,
46         //nb_port 
47        );
48     
49      cout << param->print(1);
50     
51      test (name,param);
52    }
53  catch (morpheo::ErrorMorpheo & error)
54    {
55      cout << "<" << name << "> : " <<  error.what ();
56      exit (EXIT_FAILURE);
57    }
58  catch (...)
59    {
60      cerr << "<" << name << "> : This test must generate a error" << endl;
61      exit (EXIT_FAILURE);
62    }
63
64  return (EXIT_SUCCESS);
65}
66
Note: See TracBrowser for help on using the repository browser.