mirror of
https://github.com/nasa/fpp.git
synced 2025-12-12 04:41:37 -06:00
24 lines
321 B
Bash
24 lines
321 B
Bash
default()
|
|
{
|
|
run_test "-p $PWD" default && \
|
|
diff_cpp DefaultEnum
|
|
}
|
|
|
|
explicit()
|
|
{
|
|
run_test "-p $PWD" explicit && \
|
|
diff_cpp ExplicitEnum
|
|
}
|
|
|
|
implicit()
|
|
{
|
|
run_test "-p $PWD" implicit && \
|
|
diff_cpp ImplicitEnum
|
|
}
|
|
|
|
serialize_type()
|
|
{
|
|
run_test "-p $PWD" serialize_type && \
|
|
diff_cpp SerializeTypeEnum
|
|
}
|