mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Mostly white space, style, and luacheck compliance. Signed-off-by: Jose Luis Duran <jlduran@gmail.com> (cherry picked from commit 504981357aa36365784458cfe8d9e23097bfac7b)
31 lines
582 B
Bash
31 lines
582 B
Bash
#-
|
|
# Copyright (c) 2022 Baptiste Daroussin <bapt@FreeBSD.org>
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
|
#
|
|
|
|
atf_test_case warn
|
|
atf_test_case err
|
|
atf_test_case dirname
|
|
|
|
warn_body()
|
|
{
|
|
atf_check -e "inline:plop\n" -s exit:0 /usr/libexec/flua $(atf_get_srcdir)/warn.lua
|
|
}
|
|
|
|
err_body()
|
|
{
|
|
atf_check -e "inline:plop\n" -s exit:1 /usr/libexec/flua $(atf_get_srcdir)/err.lua
|
|
}
|
|
|
|
dirname_body()
|
|
{
|
|
atf_check -o "inline:/my/path/\n" -s exit:0 /usr/libexec/flua $(atf_get_srcdir)/dirname.lua
|
|
}
|
|
|
|
atf_init_test_cases()
|
|
{
|
|
atf_add_test_case warn
|
|
atf_add_test_case err
|
|
atf_add_test_case dirname
|
|
}
|