source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_fifo_testbench_test.cpp @ 135

Last change on this file since 135 was 135, checked in by rosiere, 15 years ago

1) Add Vhdl component
2) Inhib VHDL Seltest interface

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id: Interface_fifo_testbench_test.cpp 135 2009-07-17 08:59:05Z rosiere $
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Interface_fifo.h"
10
11namespace morpheo              {
12namespace behavioural          {
13
14  std::string Interface_fifo::testbench_test (Vhdl * & vhdl,
15                                              std::string   counter_name,
16                                              std::string   reset_name  )
17  {
18    log_printf(FUNC,Behavioural,"testbench_test","Begin");
19    std::string test_name;
20   
21    if (_test_exhaustive == true)
22      test_name = Interface::testbench_test(vhdl,counter_name,reset_name);
23    else
24      {
25        vhdl->set_body("");
26        vhdl->set_body("-- Test partial");
27        vhdl->set_body("");
28
29                    test_name        = testbench_test_name        (vhdl);
30        std::string test_name_tmp    = test_name+"_tmp";
31        std::string test_name_ok     = testbench_test_ok          (vhdl);
32        std::string test_transaction = testbench_test_transaction (vhdl);
33
34        vhdl->set_signal(test_name_tmp,1);
35
36        if (_list_cycle->empty()== false)
37          {
38            vhdl->set_body ("with "+counter_name+" select");
39            vhdl->set_body ("\t"+test_name_tmp+" <=");
40       
41            std::list<uint32_t>::iterator i = _list_cycle->begin();
42           
43            while (i != _list_cycle->end())
44              {
45                vhdl->set_body ("\t"+test_transaction+" and "+test_name_ok+" when "+toString(*i)+",");
46                ++i;
47              }
48            vhdl->set_body ("\tnot "+test_transaction+" when others;");
49          }
50        else
51          vhdl->set_body (test_name_tmp+" <= not "+test_transaction+";");
52       
53        vhdl->set_body("");
54//      vhdl->set_body(test_name + " <= '1' when ("+reset_name+" = '0') else "+test_name_tmp+";");
55
56        if (_make_testbench)
57          vhdl->set_body(test_name + " <= '1' when ("+reset_name+" = '0') else "+test_name_tmp+";");
58        else
59          vhdl->set_body(test_name + " <= '1';");
60
61// #ifdef VHDL_TESTBENCH_ASSERT
62//      if (_list_cycle->empty()== false)
63//        {
64//          vhdl->set_body("");
65//          vhdl->set_body("-- Assert ...");
66//          vhdl->set_body("");
67
68//          uint32_t                 j = 0;
69//          std::list<uint32_t>::iterator i = _list_cycle->begin();
70           
71//          while (i != _list_cycle->end())
72//            {
73//              vhdl->set_body("assert not (("+counter_name+" = "+toString(*i)+" and "+test_name+" = '1')) report \"***** <"+_name+"> Test number "+toString(j)+" is OK     *****\" severity NOTE;");
74//              vhdl->set_body("assert not (("+counter_name+" = "+toString(*i)+" and "+test_name+" = '0')) report \"@@@@@ <"+_name+"> Test number "+toString(j)+" is KO !!! @@@@@\" severity NOTE;");
75//              j++;
76//              ++i;
77//            }
78
79//          vhdl->set_body("");
80//        }
81// #endif
82      }
83
84    log_printf(FUNC,Behavioural,"testbench_test","End");
85
86    return test_name;
87  };
88
89}; // end namespace behavioural         
90}; // end namespace morpheo             
91#endif
Note: See TracBrowser for help on using the repository browser.