-
Notifications
You must be signed in to change notification settings - Fork 270
/
common.bash
74 lines (62 loc) · 1.49 KB
/
common.bash
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
71
72
73
#!/bin/bash
# Common functions for running kiibohd unit tests
# Jacob Alexander 2016-2018
PASSED=0
FAILED=0
COLOR_RED="\e[1;91m"
COLOR_GREEN="\e[1;92m"
COLOR_YELLOW="\e[1;93m"
COLOR_CYAN="\e[1;96m"
COLOR_NORMAL="\e[0m"
# Results
result() {
echo "### Final Results ###"
if (( FAILED == 0 )); then
printf "${COLOR_GREEN}${PASSED}/$((PASSED+FAILED))${COLOR_NORMAL}\n"
return 0
else
printf "${COLOR_YELLOW}${PASSED}/$((PASSED+FAILED))${COLOR_NORMAL}\n"
return 1
fi
}
# Runs a command, increments test passed/failed
# Args: Command
cmd() {
# Run command
printf "${COLOR_CYAN} ==== Test $((PASSED+FAILED+1)) ==== ${COLOR_NORMAL}\n"
echo "CMD: $@"
$@
local RET=$?
# Check command
if [[ ${RET} -ne 0 ]]; then
((FAILED++))
printf "${COLOR_RED} ==> FAILED: $@ ❌${COLOR_NORMAL}\n"
else
((PASSED++))
printf "${COLOR_GREEN} ==> PASSED: $@ ✓${COLOR_NORMAL}\n"
fi
echo
return ${RET}
}
# Runs a command and copies the give file to a given location
# Args:
# 1) Command to run
# 2) File to copy, uses the most recently created directory
# 3) Where to copy file
cmd_cpy() {
cmd "${1}"
local RET=$?
# Store most recently created directory
local src_path=$(ls -t | head -1)
# Make sure the destination exists
mkdir -p $(dirname ${3})
# If the build failed, make sure to delete the old one
if [[ ${RET} -ne 0 ]]; then
printf "${COLOR_RED}Build failed for '${1}' removing firmware '${3}'${COLOR_NORMAL}\n"
rm -f ${3}
else
# Copy file
cp -f ${src_path}/${2} ${3}
fi
return ${RET}
}