Changeset 145 for trunk/Platforms
- Timestamp:
- Oct 13, 2010, 8:15:51 PM (14 years ago)
- Location:
- trunk/Platforms/Test
- Files:
-
- 64 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Platforms/Test/Makefile
r142 r145 34 34 PRIORITY = 0 35 35 endif 36 37 36 ifeq ($(flavor CLEAN), undefined) 38 37 CLEAN = 0 … … 185 184 for log in $(LOGS); do \ 186 185 $(ECHO) -n "."; \ 187 $(ECHO) -n "source $(MORPHEO_TOPLEVEL)/environment.sh $(MORPHEO_LOCALIZATION); path=\"${PWD}\"; " >> $(SCRIPT);\186 $(ECHO) -n "source $(MORPHEO_TOPLEVEL)/environment.sh -l $(MORPHEO_LOCALIZATION) -t $(MORPHEO_TYPE); path=\"${PWD}\"; " >> $(SCRIPT);\ 188 187 if $(TEST) $(CLEAN) -ne 0; then \ 189 188 $(ECHO) -n "$(RM) $${log}; " >> $(SCRIPT); \ … … 300 299 $(ECHO) " * debug : cf 'make run DATA=debug'";\ 301 300 $(ECHO) " * bench : cf 'make run DATA=bench'";\ 302 $(ECHO) " * distexe : Generate an command file to distexe. It's as run command, but just generate an script with all make";\ 301 $(ECHO) " * distexe : Generate an command file to distexe (\"$(SCRIPT)\").";\ 302 $(ECHO) " This file can be use with distexe or just run in local machine.";\ 303 303 $(ECHO) " * cfg : For each configuration in \"${PATH_CFG}\", create basic test";\ 304 304 $(ECHO) " * lib : make library";\ -
trunk/Platforms/Test/data/debug/debug.cfg
r142 r145 2 2 ${MORPHEO_TOPLEVEL}/IPs/systemC/processor/Morpheo/Files/Morpheo.gen 3 3 ${MORPHEO_TOPLEVEL}/IPs/systemC/processor/Morpheo/Files/debug.cfg 4 ${MORPHEO_TOPLEVEL}/Softwares/Test/Test_0 11/bin/soft_NEWLIB_MORPHEO.x4 ${MORPHEO_TOPLEVEL}/Softwares/Test/Test_074/bin/soft_NEWLIB_MORPHEO.x 5 5 0 6 6 0 -
trunk/Platforms/Test/script/copy_test.sh
r139 r145 10 10 { 11 11 # Test usage 12 if 12 if test ${#} -eq 2; then 13 13 name_src=${1}; 14 14 name_dest=${2}; -
trunk/Platforms/Test/src/sc_main.cpp
r142 r145 55 55 #endif 56 56 57 msgInformation(" ");57 msgInformation("Command line : "); 58 58 for (int32_t i=0; i<argc; ++i) 59 59 msg("%s ",argv[i]); -
trunk/Platforms/Test/src/test.cpp
r138 r145 141 141 if (cache_size<(cache_size_line*cache_size_word)) 142 142 { 143 msgError(" cache is too small\n");143 msgError("Cache is too small\n"); 144 144 exit(EXIT_FAILURE); 145 145 }
Note: See TracChangeset
for help on using the changeset viewer.