blob: 87b0c4612f82984ea41acf7cbb9cb1d58a94fb80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#! /bin/sh
# This script is executed in the travis-ci environment.
# Stop in case of error
set -e
# Build
./configure
make
# Test
export GHDL=$PWD/ghdl_mcode
cd testsuite
gnatmake get_entities
./testsuite.sh
|