HomeSort by: relevance | last modified time | path
    Searched defs:kyuafile (Results 1 - 6 of 6) 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.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-cli/dist/engine/drivers/
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++) {
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...]
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/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...]

Completed in 50 milliseconds