source: trunk/IPs/systemC/processor/Morpheo/Behavioural/src/Interface_testbench_test.cpp @ 41

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

Vhdl_Testbench : Modification du testbench. Maintenant complétement encapsuler dans la classe "Interfaces".
Suppression de la class Vhdl_Testbench dans un avenir proche :D
Suppression du répertoire Configuration.old

File size: 797 bytes
Line 
1#ifdef VHDL_TESTBENCH
2/*
3 * $Id$
4 *
5 * [ Description ]
6 *
7 */
8
9#include "Behavioural/include/Interface.h"
10#include "Behavioural/include/Entity.h"
11
12namespace morpheo              {
13namespace behavioural          {
14
15  string Interface::testbench_test (Vhdl * & vhdl,
16                                    string   counter_name)
17  {
18    log_printf(FUNC,Behavioural,"testbench_test","Begin");
19
20    vhdl->set_body("");
21    vhdl->set_body("-- Test exhaustive");
22    vhdl->set_body("");
23
24    string test_name    = testbench_test_name(vhdl);
25    string test_name_ok = testbench_test_ok     (vhdl);
26
27    vhdl->set_body(test_name + " <= "+test_name_ok+";");
28
29    log_printf(FUNC,Behavioural,"testbench_test","End");
30
31    return test_name;
32  };
33
34}; // end namespace behavioural         
35}; // end namespace morpheo             
36#endif
Note: See TracBrowser for help on using the repository browser.