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