Ignore:
Timestamp:
Jul 30, 2010, 4:47:27 PM (14 years ago)
Author:
rosiere
Message:
  • Add test for all configuration
  • RAT : add rat scheme (depth_save)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Entity_test_map.cpp

    r94 r139  
    1515#undef  FUNCTION
    1616#define FUNCTION "Entity::test_map"
    17   bool Entity::test_map (uint32_t depth, bool top_level, bool is_behavioural)
     17  bool Entity::test_map (bool top_level, bool is_behavioural)
    1818  {
    1919    log_printf(FUNC,Behavioural,FUNCTION,"Begin");
    2020 
    21     std::string tab=morpheo::tab(depth);
     21    // std::string tab=morpheo::tab(depth);
    2222
    23     log_printf(INFO,Interface,FUNCTION,"%s* Entity \"%s\"",tab.c_str(),_name.c_str());
     23    // log_printf(INFO,Interface,FUNCTION,"%s* Entity \"%s\"",tab.c_str(),_name.c_str());
    2424 
    25     bool _return = _interfaces->test_map(depth+1,top_level, is_behavioural);
    26 
    27 #ifndef DEBUG
    28     if (_return == false)
    29       {
    30         std::cerr << "In entity \"" << _name << "\" (type : \"" << _type << "\"), a lot of port is not connected !" << std::endl;
    31       }
    32 #endif
     25    bool _return = _interfaces->test_map(top_level, is_behavioural);
    3326
    3427    log_printf(FUNC,Behavioural,FUNCTION,"End");
Note: See TracChangeset for help on using the changeset viewer.