]> andersk Git - libyaml.git/blob - tests/run-tests.sh
6ef04a15fdf156bf45c882737477f833ad14af65
[libyaml.git] / tests / run-tests.sh
1 #!/bin/sh
2
3 set -e
4
5 main() {
6   bootstrap
7
8   make test-all
9
10   clean
11
12   cmake .
13
14   make
15   make test
16 }
17
18 bootstrap() {
19   clean
20
21   ./bootstrap
22   ./configure
23 }
24
25 clean() {
26   git clean -d -x -f
27   rm -fr libyaml-test
28 }
29
30 main "$@"
This page took 0.075487 seconds and 3 git commands to generate.