mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 11:16:42 -06:00
26 lines
435 B
Bash
26 lines
435 B
Bash
basic()
|
|
{
|
|
run_test "-i builtin.fpp -n basic.names.txt -p $PWD" basic && \
|
|
diff -u basic.names.txt basic.names.ref.txt && \
|
|
diff_cpp BasicTopology
|
|
}
|
|
|
|
commands()
|
|
{
|
|
run_test "-i builtin.fpp -p $PWD" commands && \
|
|
diff_cpp CommandsTopology
|
|
}
|
|
|
|
health()
|
|
{
|
|
run_test "-i builtin.fpp -p $PWD" health && \
|
|
diff_cpp HealthTopology
|
|
}
|
|
|
|
params()
|
|
{
|
|
run_test "-i builtin.fpp -p $PWD" params && \
|
|
diff_cpp ParamsTopology
|
|
}
|
|
|