loom
1#!/bin/bash
2
3# Тест работы отладчика SBL
4
5echo "Тест работы отладчика SBL ====================================" > test/tmp/test-interpret-simodo-script-debug.out6
7bin/simodo-debug -h >> test/tmp/test-interpret-simodo-script-debug.out8
9for file in test/source/engine/debug/*.s-script10do
11echo "--- ${file} :" >> test/tmp/test-interpret-simodo-script-debug.out12cat ${file} >> test/tmp/test-interpret-simodo-script-debug.out13echo "--- interpret :" >> test/tmp/test-interpret-simodo-script-debug.out14bin/simodo-debug ${file} -A -S < test/source/engine/debug/rwq.txt >> test/tmp/test-interpret-simodo-script-debug.out15done
16
17exit 018