loom
1#!/bin/bash
2
3# Тест выполнения моделирования с использованием языка simodo-ode
4
5echo "Тест моделирования ODE ====================================" > test/tmp/test-interpret-simodo-script-ode.out
6
7for file in test/source/engine/ode/*.s-script
8do
9echo "--- ${file} :" >> test/tmp/test-interpret-simodo-script-ode.out
10cat ${file} >> test/tmp/test-interpret-simodo-script-ode.out
11echo "--- interpret :" >> test/tmp/test-interpret-simodo-script-ode.out
12bin/simodo-interpret -m math ${file} >> test/tmp/test-interpret-simodo-script-ode.out
13done
14
15echo "Тест анализатора ODE ====================================" >> test/tmp/test-interpret-simodo-script-ode.out
16
17for file in test/source/engine/ode/*.s-script
18do
19echo "--- ${file} :" >> test/tmp/test-interpret-simodo-script-ode.out
20cat ${file} >> test/tmp/test-interpret-simodo-script-ode.out
21echo "--- interpret :" >> test/tmp/test-interpret-simodo-script-ode.out
22bin/simodo-interpret -m math ${file} -p a >> test/tmp/test-interpret-simodo-script-ode.out
23done
24
25exit 0
26