Changeset 83 for trunk/IPs/systemC/processor/Morpheo/Common/include
- Timestamp:
- May 9, 2008, 8:00:21 PM (17 years ago)
- Location:
- trunk/IPs/systemC/processor/Morpheo/Common/include
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Common/include/Debug.h
r82 r83 128 128 { \ 129 129 if (x == NULL) \ 130 err(_("%s File %s, Line %d, this pointeur is null "),MSG_ERROR,__FILE__,__LINE__); \130 err(_("%s File %s, Line %d, this pointeur is null\n"),MSG_ERROR,__FILE__,__LINE__); \ 131 131 } \ 132 132 while (0) -
trunk/IPs/systemC/processor/Morpheo/Common/include/Message.h
r82 r83 28 28 do \ 29 29 { \ 30 fprintf(stderr,"%s ",MSG_ERROR); \31 30 fprintf(stderr,arg); \ 32 31 } while (0) -
trunk/IPs/systemC/processor/Morpheo/Common/include/Test.h
r81 r83 25 25 { 26 26 std::cerr << "[" << num_test << "] : Test KO" 27 << "\tline " << line 28 << " * Localisation" 29 << " - File : " << file 30 << " - Line : " << line 31 << " * Expression is different" 32 << " - exp1 : "+morpheo::toString(exp1) 33 << " - exp2 : "+morpheo::toString(exp2) 27 << "\tline " << line << std::endl 28 << " * Localisation" << std::endl 29 << " - File : " << file << std::endl 30 << " - Line : " << line << std::endl 31 << " * Expression is different" << std::endl 32 << " - exp1 : "+morpheo::toString(exp1) << std::endl 33 << " - exp2 : "+morpheo::toString(exp2) << std::endl; 34 34 35 35 test_ko_error (); … … 86 86 #define TEST_KO(str...) do {fprintf(stdout,str); fprintf(stdout,"\n"); morpheo::test_ko(__FILE__,__LINE__);} while(0) 87 87 88 89 88 #define LABEL(str...) \ 90 89 { \
Note: See TracChangeset
for help on using the changeset viewer.