├── .cirrus.yml ├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── INSTALL.md ├── Kyuafile ├── Makefile.am ├── NEWS ├── NEWS.md ├── README.md ├── admin ├── .gitignore ├── Makefile.am.inc ├── check-style-c.awk ├── check-style-common.awk ├── check-style-cpp.awk ├── check-style-man.awk ├── check-style-shell.awk ├── check-style.sh ├── clean-all.sh ├── make-release.sh ├── travis-build.sh └── travis-install-deps.sh ├── atf-c++.hpp ├── atf-c++ ├── Kyuafile ├── Makefile.am.inc ├── atf-c++.3 ├── atf-c++.m4 ├── atf-c++.pc.in ├── atf_c++_test.cpp ├── build.cpp ├── build.hpp ├── build_test.cpp ├── check.cpp ├── check.hpp ├── check_test.cpp ├── detail │ ├── Kyuafile │ ├── Makefile.am.inc │ ├── application.cpp │ ├── application.hpp │ ├── application_test.cpp │ ├── env.cpp │ ├── env.hpp │ ├── env_test.cpp │ ├── exceptions.cpp │ ├── exceptions.hpp │ ├── exceptions_test.cpp │ ├── fs.cpp │ ├── fs.hpp │ ├── fs_test.cpp │ ├── process.cpp │ ├── process.hpp │ ├── process_test.cpp │ ├── sanity.hpp │ ├── test_helpers.cpp │ ├── test_helpers.hpp │ ├── text.cpp │ ├── text.hpp │ ├── text_test.cpp │ └── version_helper.cpp ├── macros.hpp ├── macros_hpp_test.cpp ├── macros_test.cpp ├── pkg_config_test.sh ├── tests.cpp ├── tests.hpp ├── tests_test.cpp ├── unused_test.cpp ├── utils.cpp ├── utils.hpp └── utils_test.cpp ├── atf-c.h ├── atf-c ├── .gitignore ├── Kyuafile ├── Makefile.am.inc ├── atf-c.3 ├── atf-c.m4 ├── atf-c.pc.in ├── atf-common.m4 ├── atf_c_test.c ├── build.c ├── build.h ├── build_test.c ├── check.c ├── check.h ├── check_test.c ├── defs.h.in ├── detail │ ├── Kyuafile │ ├── Makefile.am.inc │ ├── dynstr.c │ ├── dynstr.h │ ├── dynstr_test.c │ ├── env.c │ ├── env.h │ ├── env_test.c │ ├── fs.c │ ├── fs.h │ ├── fs_test.c │ ├── list.c │ ├── list.h │ ├── list_test.c │ ├── map.c │ ├── map.h │ ├── map_test.c │ ├── process.c │ ├── process.h │ ├── process_helpers.c │ ├── process_test.c │ ├── sanity.c │ ├── sanity.h │ ├── sanity_test.c │ ├── test_helpers.c │ ├── test_helpers.h │ ├── text.c │ ├── text.h │ ├── text_test.c │ ├── tp_main.c │ ├── user.c │ ├── user.h │ ├── user_test.c │ └── version_helper.c ├── error.c ├── error.h ├── error_fwd.h ├── error_test.c ├── h_build.h ├── macros.h ├── macros_h_test.c ├── macros_test.c ├── pkg_config_test.sh ├── tc.c ├── tc.h ├── tc_test.c ├── tp.c ├── tp.h ├── tp_test.c ├── unused_test.c ├── utils.c ├── utils.h └── utils_test.c ├── atf-sh ├── .gitignore ├── Kyuafile ├── Makefile.am.inc ├── atf-check.1 ├── atf-check.cpp ├── atf-check_test.sh ├── atf-sh.1 ├── atf-sh.3 ├── atf-sh.cpp ├── atf-sh.m4 ├── atf-sh.pc.in ├── atf_check_test.sh ├── config_test.sh ├── integration_test.sh ├── libatf-sh.subr ├── misc_helpers.sh ├── normalize_test.sh ├── tc_test.sh └── tp_test.sh ├── bootstrap ├── .gitignore ├── Makefile.am.inc ├── h_tp_atf_check_sh.sh ├── h_tp_basic_c.c ├── h_tp_basic_cpp.cpp ├── h_tp_basic_sh.sh ├── h_tp_fail.sh ├── h_tp_pass.sh ├── t_subr_atf_check.at ├── t_test_program_compare.at ├── t_test_program_filter.at ├── t_test_program_list.at ├── t_test_program_run.at └── testsuite.at ├── configure.ac ├── doc ├── .gitignore ├── Makefile.am.inc ├── atf-test-case.4 ├── atf-test-program.1 └── atf.7.in ├── m4 ├── .gitignore ├── ac_cxx_compile_stdcxx.m4 ├── compiler-flags.m4 ├── cxx-std-funcs.m4 ├── developer-mode.m4 ├── module-application.m4 ├── module-defs.m4 ├── module-fs.m4 └── runtime-tool.m4 └── test-programs ├── Kyuafile ├── Makefile.am.inc ├── c_helpers.c ├── common.sh ├── config_test.sh ├── cpp_helpers.cpp ├── expect_test.sh ├── meta_data_test.sh ├── result_test.sh ├── sh_helpers.sh └── srcdir_test.sh /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/Kyuafile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/README.md -------------------------------------------------------------------------------- /admin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/.gitignore -------------------------------------------------------------------------------- /admin/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/Makefile.am.inc -------------------------------------------------------------------------------- /admin/check-style-c.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/check-style-c.awk -------------------------------------------------------------------------------- /admin/check-style-common.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/check-style-common.awk -------------------------------------------------------------------------------- /admin/check-style-cpp.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/check-style-cpp.awk -------------------------------------------------------------------------------- /admin/check-style-man.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/check-style-man.awk -------------------------------------------------------------------------------- /admin/check-style-shell.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/check-style-shell.awk -------------------------------------------------------------------------------- /admin/check-style.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/check-style.sh -------------------------------------------------------------------------------- /admin/clean-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/clean-all.sh -------------------------------------------------------------------------------- /admin/make-release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/make-release.sh -------------------------------------------------------------------------------- /admin/travis-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/travis-build.sh -------------------------------------------------------------------------------- /admin/travis-install-deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/admin/travis-install-deps.sh -------------------------------------------------------------------------------- /atf-c++.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++.hpp -------------------------------------------------------------------------------- /atf-c++/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/Kyuafile -------------------------------------------------------------------------------- /atf-c++/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/Makefile.am.inc -------------------------------------------------------------------------------- /atf-c++/atf-c++.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/atf-c++.3 -------------------------------------------------------------------------------- /atf-c++/atf-c++.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/atf-c++.m4 -------------------------------------------------------------------------------- /atf-c++/atf-c++.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/atf-c++.pc.in -------------------------------------------------------------------------------- /atf-c++/atf_c++_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/atf_c++_test.cpp -------------------------------------------------------------------------------- /atf-c++/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/build.cpp -------------------------------------------------------------------------------- /atf-c++/build.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/build.hpp -------------------------------------------------------------------------------- /atf-c++/build_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/build_test.cpp -------------------------------------------------------------------------------- /atf-c++/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/check.cpp -------------------------------------------------------------------------------- /atf-c++/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/check.hpp -------------------------------------------------------------------------------- /atf-c++/check_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/check_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/Kyuafile -------------------------------------------------------------------------------- /atf-c++/detail/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/Makefile.am.inc -------------------------------------------------------------------------------- /atf-c++/detail/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/application.cpp -------------------------------------------------------------------------------- /atf-c++/detail/application.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/application.hpp -------------------------------------------------------------------------------- /atf-c++/detail/application_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/application_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/env.cpp -------------------------------------------------------------------------------- /atf-c++/detail/env.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/env.hpp -------------------------------------------------------------------------------- /atf-c++/detail/env_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/env_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/exceptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/exceptions.cpp -------------------------------------------------------------------------------- /atf-c++/detail/exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/exceptions.hpp -------------------------------------------------------------------------------- /atf-c++/detail/exceptions_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/exceptions_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/fs.cpp -------------------------------------------------------------------------------- /atf-c++/detail/fs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/fs.hpp -------------------------------------------------------------------------------- /atf-c++/detail/fs_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/fs_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/process.cpp -------------------------------------------------------------------------------- /atf-c++/detail/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/process.hpp -------------------------------------------------------------------------------- /atf-c++/detail/process_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/process_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/sanity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/sanity.hpp -------------------------------------------------------------------------------- /atf-c++/detail/test_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/test_helpers.cpp -------------------------------------------------------------------------------- /atf-c++/detail/test_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/test_helpers.hpp -------------------------------------------------------------------------------- /atf-c++/detail/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/text.cpp -------------------------------------------------------------------------------- /atf-c++/detail/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/text.hpp -------------------------------------------------------------------------------- /atf-c++/detail/text_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/text_test.cpp -------------------------------------------------------------------------------- /atf-c++/detail/version_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/detail/version_helper.cpp -------------------------------------------------------------------------------- /atf-c++/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/macros.hpp -------------------------------------------------------------------------------- /atf-c++/macros_hpp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/macros_hpp_test.cpp -------------------------------------------------------------------------------- /atf-c++/macros_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/macros_test.cpp -------------------------------------------------------------------------------- /atf-c++/pkg_config_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/pkg_config_test.sh -------------------------------------------------------------------------------- /atf-c++/tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/tests.cpp -------------------------------------------------------------------------------- /atf-c++/tests.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/tests.hpp -------------------------------------------------------------------------------- /atf-c++/tests_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/tests_test.cpp -------------------------------------------------------------------------------- /atf-c++/unused_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/unused_test.cpp -------------------------------------------------------------------------------- /atf-c++/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/utils.cpp -------------------------------------------------------------------------------- /atf-c++/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/utils.hpp -------------------------------------------------------------------------------- /atf-c++/utils_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c++/utils_test.cpp -------------------------------------------------------------------------------- /atf-c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c.h -------------------------------------------------------------------------------- /atf-c/.gitignore: -------------------------------------------------------------------------------- 1 | defs.h 2 | -------------------------------------------------------------------------------- /atf-c/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/Kyuafile -------------------------------------------------------------------------------- /atf-c/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/Makefile.am.inc -------------------------------------------------------------------------------- /atf-c/atf-c.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/atf-c.3 -------------------------------------------------------------------------------- /atf-c/atf-c.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/atf-c.m4 -------------------------------------------------------------------------------- /atf-c/atf-c.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/atf-c.pc.in -------------------------------------------------------------------------------- /atf-c/atf-common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/atf-common.m4 -------------------------------------------------------------------------------- /atf-c/atf_c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/atf_c_test.c -------------------------------------------------------------------------------- /atf-c/build.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/build.c -------------------------------------------------------------------------------- /atf-c/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/build.h -------------------------------------------------------------------------------- /atf-c/build_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/build_test.c -------------------------------------------------------------------------------- /atf-c/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/check.c -------------------------------------------------------------------------------- /atf-c/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/check.h -------------------------------------------------------------------------------- /atf-c/check_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/check_test.c -------------------------------------------------------------------------------- /atf-c/defs.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/defs.h.in -------------------------------------------------------------------------------- /atf-c/detail/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/Kyuafile -------------------------------------------------------------------------------- /atf-c/detail/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/Makefile.am.inc -------------------------------------------------------------------------------- /atf-c/detail/dynstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/dynstr.c -------------------------------------------------------------------------------- /atf-c/detail/dynstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/dynstr.h -------------------------------------------------------------------------------- /atf-c/detail/dynstr_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/dynstr_test.c -------------------------------------------------------------------------------- /atf-c/detail/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/env.c -------------------------------------------------------------------------------- /atf-c/detail/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/env.h -------------------------------------------------------------------------------- /atf-c/detail/env_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/env_test.c -------------------------------------------------------------------------------- /atf-c/detail/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/fs.c -------------------------------------------------------------------------------- /atf-c/detail/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/fs.h -------------------------------------------------------------------------------- /atf-c/detail/fs_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/fs_test.c -------------------------------------------------------------------------------- /atf-c/detail/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/list.c -------------------------------------------------------------------------------- /atf-c/detail/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/list.h -------------------------------------------------------------------------------- /atf-c/detail/list_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/list_test.c -------------------------------------------------------------------------------- /atf-c/detail/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/map.c -------------------------------------------------------------------------------- /atf-c/detail/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/map.h -------------------------------------------------------------------------------- /atf-c/detail/map_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/map_test.c -------------------------------------------------------------------------------- /atf-c/detail/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/process.c -------------------------------------------------------------------------------- /atf-c/detail/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/process.h -------------------------------------------------------------------------------- /atf-c/detail/process_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/process_helpers.c -------------------------------------------------------------------------------- /atf-c/detail/process_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/process_test.c -------------------------------------------------------------------------------- /atf-c/detail/sanity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/sanity.c -------------------------------------------------------------------------------- /atf-c/detail/sanity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/sanity.h -------------------------------------------------------------------------------- /atf-c/detail/sanity_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/sanity_test.c -------------------------------------------------------------------------------- /atf-c/detail/test_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/test_helpers.c -------------------------------------------------------------------------------- /atf-c/detail/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/test_helpers.h -------------------------------------------------------------------------------- /atf-c/detail/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/text.c -------------------------------------------------------------------------------- /atf-c/detail/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/text.h -------------------------------------------------------------------------------- /atf-c/detail/text_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/text_test.c -------------------------------------------------------------------------------- /atf-c/detail/tp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/tp_main.c -------------------------------------------------------------------------------- /atf-c/detail/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/user.c -------------------------------------------------------------------------------- /atf-c/detail/user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/user.h -------------------------------------------------------------------------------- /atf-c/detail/user_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/user_test.c -------------------------------------------------------------------------------- /atf-c/detail/version_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/detail/version_helper.c -------------------------------------------------------------------------------- /atf-c/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/error.c -------------------------------------------------------------------------------- /atf-c/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/error.h -------------------------------------------------------------------------------- /atf-c/error_fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/error_fwd.h -------------------------------------------------------------------------------- /atf-c/error_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/error_test.c -------------------------------------------------------------------------------- /atf-c/h_build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/h_build.h -------------------------------------------------------------------------------- /atf-c/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/macros.h -------------------------------------------------------------------------------- /atf-c/macros_h_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/macros_h_test.c -------------------------------------------------------------------------------- /atf-c/macros_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/macros_test.c -------------------------------------------------------------------------------- /atf-c/pkg_config_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/pkg_config_test.sh -------------------------------------------------------------------------------- /atf-c/tc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/tc.c -------------------------------------------------------------------------------- /atf-c/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/tc.h -------------------------------------------------------------------------------- /atf-c/tc_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/tc_test.c -------------------------------------------------------------------------------- /atf-c/tp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/tp.c -------------------------------------------------------------------------------- /atf-c/tp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/tp.h -------------------------------------------------------------------------------- /atf-c/tp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/tp_test.c -------------------------------------------------------------------------------- /atf-c/unused_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/unused_test.c -------------------------------------------------------------------------------- /atf-c/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/utils.c -------------------------------------------------------------------------------- /atf-c/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/utils.h -------------------------------------------------------------------------------- /atf-c/utils_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-c/utils_test.c -------------------------------------------------------------------------------- /atf-sh/.gitignore: -------------------------------------------------------------------------------- 1 | atf-check 2 | atf-sh 3 | -------------------------------------------------------------------------------- /atf-sh/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/Kyuafile -------------------------------------------------------------------------------- /atf-sh/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/Makefile.am.inc -------------------------------------------------------------------------------- /atf-sh/atf-check.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-check.1 -------------------------------------------------------------------------------- /atf-sh/atf-check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-check.cpp -------------------------------------------------------------------------------- /atf-sh/atf-check_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-check_test.sh -------------------------------------------------------------------------------- /atf-sh/atf-sh.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-sh.1 -------------------------------------------------------------------------------- /atf-sh/atf-sh.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-sh.3 -------------------------------------------------------------------------------- /atf-sh/atf-sh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-sh.cpp -------------------------------------------------------------------------------- /atf-sh/atf-sh.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-sh.m4 -------------------------------------------------------------------------------- /atf-sh/atf-sh.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf-sh.pc.in -------------------------------------------------------------------------------- /atf-sh/atf_check_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/atf_check_test.sh -------------------------------------------------------------------------------- /atf-sh/config_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/config_test.sh -------------------------------------------------------------------------------- /atf-sh/integration_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/integration_test.sh -------------------------------------------------------------------------------- /atf-sh/libatf-sh.subr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/libatf-sh.subr -------------------------------------------------------------------------------- /atf-sh/misc_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/misc_helpers.sh -------------------------------------------------------------------------------- /atf-sh/normalize_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/normalize_test.sh -------------------------------------------------------------------------------- /atf-sh/tc_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/tc_test.sh -------------------------------------------------------------------------------- /atf-sh/tp_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/atf-sh/tp_test.sh -------------------------------------------------------------------------------- /bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/.gitignore -------------------------------------------------------------------------------- /bootstrap/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/Makefile.am.inc -------------------------------------------------------------------------------- /bootstrap/h_tp_atf_check_sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/h_tp_atf_check_sh.sh -------------------------------------------------------------------------------- /bootstrap/h_tp_basic_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/h_tp_basic_c.c -------------------------------------------------------------------------------- /bootstrap/h_tp_basic_cpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/h_tp_basic_cpp.cpp -------------------------------------------------------------------------------- /bootstrap/h_tp_basic_sh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/h_tp_basic_sh.sh -------------------------------------------------------------------------------- /bootstrap/h_tp_fail.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/h_tp_fail.sh -------------------------------------------------------------------------------- /bootstrap/h_tp_pass.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/h_tp_pass.sh -------------------------------------------------------------------------------- /bootstrap/t_subr_atf_check.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/t_subr_atf_check.at -------------------------------------------------------------------------------- /bootstrap/t_test_program_compare.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/t_test_program_compare.at -------------------------------------------------------------------------------- /bootstrap/t_test_program_filter.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/t_test_program_filter.at -------------------------------------------------------------------------------- /bootstrap/t_test_program_list.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/t_test_program_list.at -------------------------------------------------------------------------------- /bootstrap/t_test_program_run.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/t_test_program_run.at -------------------------------------------------------------------------------- /bootstrap/testsuite.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/bootstrap/testsuite.at -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/configure.ac -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | atf.7 2 | -------------------------------------------------------------------------------- /doc/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/doc/Makefile.am.inc -------------------------------------------------------------------------------- /doc/atf-test-case.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/doc/atf-test-case.4 -------------------------------------------------------------------------------- /doc/atf-test-program.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/doc/atf-test-program.1 -------------------------------------------------------------------------------- /doc/atf.7.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/doc/atf.7.in -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/ac_cxx_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/ac_cxx_compile_stdcxx.m4 -------------------------------------------------------------------------------- /m4/compiler-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/compiler-flags.m4 -------------------------------------------------------------------------------- /m4/cxx-std-funcs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/cxx-std-funcs.m4 -------------------------------------------------------------------------------- /m4/developer-mode.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/developer-mode.m4 -------------------------------------------------------------------------------- /m4/module-application.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/module-application.m4 -------------------------------------------------------------------------------- /m4/module-defs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/module-defs.m4 -------------------------------------------------------------------------------- /m4/module-fs.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/module-fs.m4 -------------------------------------------------------------------------------- /m4/runtime-tool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/m4/runtime-tool.m4 -------------------------------------------------------------------------------- /test-programs/Kyuafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/Kyuafile -------------------------------------------------------------------------------- /test-programs/Makefile.am.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/Makefile.am.inc -------------------------------------------------------------------------------- /test-programs/c_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/c_helpers.c -------------------------------------------------------------------------------- /test-programs/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/common.sh -------------------------------------------------------------------------------- /test-programs/config_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/config_test.sh -------------------------------------------------------------------------------- /test-programs/cpp_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/cpp_helpers.cpp -------------------------------------------------------------------------------- /test-programs/expect_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/expect_test.sh -------------------------------------------------------------------------------- /test-programs/meta_data_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/meta_data_test.sh -------------------------------------------------------------------------------- /test-programs/result_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/result_test.sh -------------------------------------------------------------------------------- /test-programs/sh_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/sh_helpers.sh -------------------------------------------------------------------------------- /test-programs/srcdir_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freebsd/atf/HEAD/test-programs/srcdir_test.sh --------------------------------------------------------------------------------