loom
1#!/bin/bash
2
3# Тест работы с JSON-файлами
4
5echo "Тесты парсера JSON-файлов =================================" > test/tmp/test-json-Parser.out
6
7for file in test/source/json/parser/*.json
8do
9echo "--- ${file} :" >> test/tmp/test-json-Parser.out
10cat ${file} >> test/tmp/test-json-Parser.out
11echo "--- PARSER :" >> test/tmp/test-json-Parser.out
12build/tests/test-json-AnalyzeData ${file} >> test/tmp/test-json-Parser.out
13done
14
15exit 0
16