Changeset 110 for trunk/IPs/systemC/processor/Morpheo/Script/SelfTest.sh
- Timestamp:
- Feb 19, 2009, 5:31:47 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/IPs/systemC/processor/Morpheo/Script/SelfTest.sh
r105 r110 9 9 declare test_ko="Test KO"; 10 10 declare test_ok="Test OK"; 11 declare test_unknow="???????"; 11 12 declare tmp="${MORPHEO_HOME}/tmp/SelfTest"; 12 13 declare path="${MORPHEO_TOPLEVEL}/IPs/systemC/processor/Morpheo/"; … … 88 89 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Direction_Glue" 89 90 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction" 90 #"Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue"91 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Meta_Predictor_Glue" 91 92 # "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Two_Level_Branch_Predictor_Glue" 92 93 # "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Branch_History_Table" 93 94 # "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor/Pattern_History_Table" 94 #"Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor"95 #"Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor"95 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor/Two_Level_Branch_Predictor" 96 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Direction/Meta_Predictor" 96 97 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Prediction_unit_Glue" 97 98 "Behavioural/Core/Multi_Front_end/Front_end/Prediction_unit/Return_Address_Stack" … … 225 226 "result") 226 227 for x in "systemc" "vhdl"; do 227 echo "${x}"; 228 color=34; 229 echo "[1;${color}m * ${x}[1;0m"; 230 228 231 for i in ${tmp}/*.${x}; do 229 232 if test -f ${i}; then … … 232 235 233 236 case "${res_test}" in 234 "${test_ok}") color=32;237 "${test_ok}") res_test=${test_ok}; color=32; 235 238 ;; 236 "${test_ko}") color=31;239 "${test_ko}") res_test=${test_ko}; color=31; 237 240 ;; 238 *) color=39;241 *) res_test=${test_unknow}; color=39; 239 242 ;; 240 243 esac 241 echo "[1;${color}m * ${res_test} - ${component}[1;0m";244 echo "[1;${color}m * ${res_test} - ${component}[1;0m"; 242 245 fi; 243 246 done;
Note: See TracChangeset
for help on using the changeset viewer.