]> andersk Git - libyaml.git/blame - tests/run-tests.sh
Include libyaml-test and libyaml-parser-emitter
[libyaml.git] / tests / run-tests.sh
CommitLineData
52b6634f
IN
1#!/bin/sh
2
3set -e
4
5main() {
a672b071 6 clean
52b6634f 7
a672b071
IN
8 ./bootstrap
9 ./configure
52b6634f
IN
10 make test-all
11
12 clean
13
14 cmake .
52b6634f
IN
15 make
16 make test
52b6634f 17
52b6634f 18 clean
52b6634f
IN
19}
20
21clean() {
22 git clean -d -x -f
a672b071 23 rm -fr tests/run-test-suite/data
52b6634f
IN
24}
25
26main "$@"
This page took 0.043092 seconds and 5 git commands to generate.