blob: c0a652a55ec7a6271f872bd95978e2bc03d72e8a (
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
68
69
70
|
#!/usr/bin/env bash
VERSION="dev-$(date -u '+%Y-%m-%d')-$(git rev-parse --short HEAD)"
if [[ $1 == "single_test" ]]
then
shift
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
odin test ../tests -collection:src=../src -define:ODIN_TEST_NAMES=$@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
shift
if ([ $? -ne 0 ])
then
echo "Test failed"
exit 1
fi
exit 0
fi
if [[ $1 == "test" ]]
then
shift
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
odin test ../tests -collection:src=../src $@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
if ([ $? -ne 0 ])
then
echo "Test failed"
exit 1
fi
exit 0
fi
if [[ $1 == "build_test" ]]
then
shift
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
odin build ../tests -build-mode:test -collection:src=../src $@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
if ([ $? -ne 0 ])
then
echo "Build failed"
exit 1
fi
exit 0
fi
if [[ $1 == "debug" ]]
then
shift
odin build src/ -show-timings -collection:src=src -out:ols -microarch:native -no-bounds-check -use-separate-modules -define:VERSION=$VERSION-debug -debug $@
exit 0
fi
odin build src/ -show-timings -collection:src=src -out:ols -microarch:native -no-bounds-check -o:speed -define:VERSION=$VERSION $@
|