HomeSort by: relevance | last modified time | path
    Searched refs:kyuafile (Results 1 - 15 of 15) sorted by relevancy

  /src/external/bsd/kyua-cli/dist/engine/
kyuafile.hpp 29 /// \file engine/kyuafile.hpp
54 /// the Kyuafile is being read, and all recursive inclusions are resolved
64 class kyuafile { class in namespace:engine
65 /// Path to the directory containing the top-level Kyuafile loaded.
71 /// Collection of the test programs defined in the Kyuafile.
75 explicit kyuafile(const utils::fs::path&, const utils::fs::path&,
77 ~kyuafile(void);
79 static kyuafile load(const utils::fs::path&,
kyuafile_test.cpp 29 #include "engine/kyuafile.hpp"
57 const engine::kyuafile suite = engine::kyuafile::load(
98 const engine::kyuafile suite = engine::kyuafile::load(
145 const engine::kyuafile suite = engine::kyuafile::load(
189 const engine::kyuafile suite = engine::kyuafile::load(
225 const engine::kyuafile suite = engine::kyuafile::load
    [all...]
kyuafile.cpp 29 #include "engine/kyuafile.hpp"
59 // History of Kyuafile file versions:
63 // Files now start with syntax(2) instead of syntax('kyuafile', 1).
103 /// Lua state to parse a single Kyuafile file.
106 /// Root directory of the test suite represented by the Kyuafile.
112 /// Name of the Kyuafile to load relative to _source_root.
115 /// Version of the Kyuafile file format requested by the parsed file.
117 /// This is set once the Kyuafile invokes the syntax() call.
120 /// Name of the test suite defined by the Kyuafile.
122 /// This is set once the Kyuafile invokes the test_suite() call
561 engine::kyuafile::kyuafile(const fs::path& source_root_, function in class:engine::kyuafile
    [all...]
  /src/external/bsd/kyua-atf-compat/dist/
atf2kyua.sh 45 find "${target_root}" -name Kyuafile -exec rm -f {} \;
74 # Converts an Atffile to a Kyuafile.
77 # \param kyuafile The path to where the Kyuafile will be written.
80 local kyuafile="${1}"; shift
82 lib_info "Converting ${atffile} -> ${kyuafile}"
99 mkdir -p "$(dirname "${kyuafile}")"
101 echo "syntax('kyuafile', 1)" >"${kyuafile}"
102 echo >>"${kyuafile}"
    [all...]
atf-run.sh 116 find "${dir}" -name Kyuafile -exec grep "test_suite('" "{}" \; | \
121 # Gets the path to the compatibility Kyuafile.
123 # If a Kyuafile is found in the current directory, use that directly.
124 # Otherwise, generate a fake Kyuafile in a temporary directory and return
128 # of the Kyuafile to be used.
132 if [ -f Kyuafile ]; then
133 eval ${output_var}=\'"$(pwd)/Kyuafile"\'
136 lib_error "Cannot generate fake Kyuafile"
137 eval ${output_var}=\'"${Lib_TempDir}/Kyuafile"\'
139 lib_error "Cannot find Atffile nor Kyuafile"
    [all...]
  /src/external/bsd/kyua-cli/dist/examples/
syntax_test.cpp 36 #include "engine/kyuafile.hpp"
114 set_md_var("require.files", example_file(this, "Kyuafile.top").str());
119 const fs::path source_path = example_file(this, "Kyuafile.top");
120 ATF_REQUIRE(::symlink(source_path.c_str(), "root/Kyuafile") != -1);
125 const engine::kyuafile kyuafile = engine::kyuafile::load( local
126 fs::path("root/Kyuafile"), none);
127 ATF_REQUIRE_EQ(fs::path("root"), kyuafile.source_root());
128 ATF_REQUIRE_EQ(fs::path("root"), kyuafile.build_root())
159 const engine::kyuafile kyuafile = engine::kyuafile::load( local
    [all...]
  /src/external/bsd/kyua-cli/dist/engine/drivers/
debug_test.cpp 34 #include "engine/kyuafile.hpp"
56 /// Looks for a single test case in the Kyuafile.
59 /// \param kyuafile The test suite in which to look for the test case.
67 const engine::kyuafile& kyuafile)
72 kyuafile.test_programs().begin(); p != kyuafile.test_programs().end();
108 /// \param kyuafile_path The path to the Kyuafile to be loaded.
126 const engine::kyuafile kyuafile = engine::kyuafile::load local
    [all...]
list_tests.cpp 33 #include "engine/kyuafile.hpp"
82 /// \param kyuafile_path The path to the Kyuafile to be loaded.
94 const engine::kyuafile kyuafile = engine::kyuafile::load( local
99 kyuafile.test_programs().begin();
100 iter != kyuafile.test_programs().end(); iter++) {
run_tests.cpp 34 #include "engine/kyuafile.hpp"
158 /// \param kyuafile_path The path to the Kyuafile to be loaded.
174 const engine::kyuafile kyuafile = engine::kyuafile::load( local
192 kyuafile.test_programs().begin();
193 iter != kyuafile.test_programs().end(); iter++) {
  /src/external/bsd/kyua-cli/share/man/man5/
Makefile 7 .for name in kyua.conf.5 kyuafile.5
  /src/external/bsd/kyua-cli/lib/engine/
Makefile 19 kyuafile.cpp \
  /src/external/bsd/kyua-cli/dist/integration/
cmd_list_test.sh 32 cat >Kyuafile <<EOF
37 include("subdir/Kyuafile")
43 cat >subdir/Kyuafile <<EOF
66 cat >Kyuafile <<EOF
69 include("subdir/Kyuafile")
73 cat >subdir/Kyuafile <<EOF
90 cat >Kyuafile <<EOF
108 cat >Kyuafile <<EOF
141 cat >Kyuafile <<EOF
144 include("subdir/Kyuafile")
    [all...]
cmd_debug_test.sh 32 cat >Kyuafile <<EOF
49 cat >Kyuafile <<EOF
69 cat >Kyuafile <<EOF
91 cat >Kyuafile <<EOF
111 cat >Kyuafile <<EOF
148 cat >Kyuafile <<EOF
177 cat >Kyuafile <<EOF
209 cat >root/Kyuafile <<EOF
212 include("subdir/Kyuafile")
218 cat >root/subdir/Kyuafile <<EO
    [all...]
cmd_test_test.sh 34 cat >Kyuafile <<EOF
57 cat >Kyuafile <<EOF
80 cat >Kyuafile <<EOF
114 cat >Kyuafile <<EOF
150 cat >Kyuafile <<EOF
176 cat >Kyuafile <<EOF
203 cat >Kyuafile <<EOF
227 cat >Kyuafile <<EOF
231 include("subdir/Kyuafile")
237 cat >subdir/Kyuafile <<EO
    [all...]
  /src/external/bsd/kyua-cli/dist/bootstrap/
testsuite 2005 cat >Kyuafile <<'_ATEOF'
2069 cat >Kyuafile <<'_ATEOF'
2133 cat >Kyuafile <<'_ATEOF'
2197 cat >Kyuafile <<'_ATEOF'
2286 cat >Kyuafile <<'_ATEOF'
2375 cat >Kyuafile <<'_ATEOF'
2464 cat >Kyuafile <<'_ATEOF'
2553 cat >Kyuafile <<'_ATEOF'
2642 cat >Kyuafile <<'_ATEOF'
2731 cat >Kyuafile <<'_ATEOF
    [all...]

Completed in 49 milliseconds