xref: /freebsd/tests/Kyuafile (revision 6ef644f5)
1--
2-- Copyright 2011 Google Inc.
3-- All rights reserved.
4--
5-- Redistribution and use in source and binary forms, with or without
6-- modification, are permitted provided that the following conditions are
7-- met:
8--
9-- * Redistributions of source code must retain the above copyright
10--   notice, this list of conditions and the following disclaimer.
11-- * Redistributions in binary form must reproduce the above copyright
12--   notice, this list of conditions and the following disclaimer in the
13--   documentation and/or other materials provided with the distribution.
14-- * Neither the name of Google Inc. nor the names of its contributors
15--   may be used to endorse or promote products derived from this software
16--   without specific prior written permission.
17--
18-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22-- OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24-- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25-- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26-- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27-- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28-- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30-- Automatically recurses into any subdirectory that holds a Kyuafile.
31-- As such, this Kyuafile is suitable for installation into the root of
32-- the tests hierarchy as well as into any other subdirectory that needs
33-- "auto-discovery" of tests.
34--
35-- This file is based on the Kyuafile.top sample file distributed in the
36-- kyua-cli package.
37
38syntax(2)
39
40local directory = fs.dirname(current_kyuafile())
41for file in fs.files(directory) do
42    if file == "." or file == ".." then
43        -- Skip these special entries.
44    else
45        local kyuafile_relative = fs.join(file, "Kyuafile")
46        local kyuafile_absolute = fs.join(directory, kyuafile_relative)
47        if fs.exists(kyuafile_absolute) then
48            include(kyuafile_relative)
49        end
50    end
51end
52