loom
1#!/bin/bash
2
3# Тест работы IPC
4
5echo "Тест работы IPC ====================================" > test/tmp/test-messaging-ipc-wrapper.out
6
7for file in test/source/engine/debug/*.s-script
8do
9echo "--- ${file} :" >> test/tmp/test-messaging-ipc-wrapper.out
10cat ${file} >> test/tmp/test-messaging-ipc-wrapper.out
11echo "--- interpret :" >> test/tmp/test-messaging-ipc-wrapper.out
12build/tests/test-messaging-ipc-wrapper test/source/engine/debug/rwq.txt bin/simodo-debug ${file} -A -S >> test/tmp/test-messaging-ipc-wrapper.out
13done
14
15exit 0
16