aboutsummaryrefslogtreecommitdiff
path: root/test/emit_test/emit_test.sh
blob: addecfcbe4ccf612167fa3ae69f83b8a2a4327b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

set -e
cd `dirname $0`/../..
ROOT=`pwd`
TMP=build/tmp/test
${ROOT}/scripts/build.sh

mkdir -p ${TMP}/emit_test
rm -rf ${TMP}/emit_test/*
bin/flatcc -a -o ${TMP}/emit_test test/emit_test/emit_test.fbs \
    test/monster_test/monster_test.fbs
cp test/emit_test/*.c ${TMP}/emit_test
cd ${TMP}/emit_test
cc -g -I ${ROOT}/include emit_test.c \
    ${ROOT}/lib/libflatccrt.a -o emit_test_d
echo "running emit test"
./emit_test_d