#! /usr/libexec/atf-sh
atf_test_case tst_args_d
tst_args_d_head()
{
    atf_set 'descr' 'DTrace test common/syscall/tst.args.d'
}
tst_args_d_body()
{
    
    atf_check -s exit:0 -o empty -e empty \
        "$(atf_get_srcdir)/../../dtest" "$(atf_get_srcdir)/tst.args.d"
}
atf_test_case tst_openret_ksh
tst_openret_ksh_head()
{
    atf_set 'descr' 'DTrace test common/syscall/tst.openret.ksh'
}
tst_openret_ksh_body()
{
    
    atf_check -s exit:0 -o empty -e empty \
        "$(atf_get_srcdir)/../../dtest" "$(atf_get_srcdir)/tst.openret.ksh"
}
atf_init_test_cases()
{
    atf_add_test_case tst_args_d
    atf_add_test_case tst_openret_ksh
}
