1/* 2 NB: Using the normal block comment style here triggers a UCL parsing bug. 3 4 SPDX-License-Identifier: BSD-3-Clause 5 6 Copyright 2011 The Kyua Authors. 7 All rights reserved. 8 9 Redistribution and use in source and binary forms, with or without 10 modification, are permitted provided that the following conditions are 11 met: 12 13 * Redistributions of source code must retain the above copyright 14 notice, this list of conditions and the following disclaimer. 15 * Redistributions in binary form must reproduce the above copyright 16 notice, this list of conditions and the following disclaimer in the 17 documentation and/or other materials provided with the distribution. 18 * Neither the name of Google Inc. nor the names of its contributors 19 may be used to endorse or promote products derived from this software 20 without specific prior written permission. 21 22 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 23 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 24 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 25 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 26 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 27 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 28 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 29 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 30 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 31 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 32 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 */ 34 35comment = "Testing framework for infrastructure software" 36 37desc = <<EOD 38Kyua is a testing framework for infrastructure software, originally designed 39to equip BSD-based operating systems with a test suite. This means that Kyua 40is lightweight and simple, and that Kyua integrates well with various build 41systems and continuous integration frameworks. 42 43Kyua features an expressive test suite definition language, a safe runtime 44engine for test suites and a powerful report generation engine. 45 46Kyua is for both developers and users, from the developer applying a simple 47fix to a library to the system administrator deploying a new release on a 48production machine. 49 50Kyua is able to execute test programs written with a plethora of testing 51libraries and languages. The test program library of choice is ATF, which 52kyua's design originated from. However, framework-less test programs and 53TAP-compliant test programs can also be executed through kyua. 54EOD 55 56annotations { 57 set = "devel" 58} 59