blob: 8845ed6b5ce5fb5b6440d23c968306fe7b6bfcbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#!/usr/bin/env bash
if [[ $1 == "CI" ]]
then
export PATH=$PATH:$PWD/Odin
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
odin test ../tests -collection:shared=../src -o:speed
if ([ $? -ne 0 ])
then
echo "Ols tests failed"
exit 1
fi
cd ..
tools/odinfmt/tests.sh
if ([ $? -ne 0 ])
then
echo "Odinfmt tests failed"
#darwin bug in snapshot
#exit 1
fi
fi
if [[ $1 == "single_test" ]]
then
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
odin test ../tests -collection:shared=../src -test-name:$2
if ([ $? -ne 0 ])
then
echo "Test failed"
exit 1
fi
exit 0
fi
if [[ $1 == "test" ]]
then
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
odin test ../tests -collection:shared=../src
if ([ $? -ne 0 ])
then
echo "Test failed"
exit 1
fi
exit 0
fi
if [[ $1 == "debug" ]]
then
odin build src/ -collection:shared=src -out:ols -use-separate-modules -debug
exit 0
fi
odin build src/ -collection:shared=src -out:ols -o:speed
|