1 Automated Testing Framework (atf) 2 The NetBSD Foundation, Inc. 3--------------------------------------------------------------------------- 4 5 6License 7======= 8 9Copyright (c) 2007, 2008, 2009 The NetBSD Foundation, Inc. 10All rights reserved. 11 12Redistribution and use in source and binary forms, with or without 13modification, are permitted provided that the following conditions 14are met: 151. Redistributions of source code must retain the above copyright 16 notice, this list of conditions and the following disclaimer. 172. Redistributions in binary form must reproduce the above copyright 18 notice, this list of conditions and the following disclaimer in the 19 documentation and/or other materials provided with the distribution. 20 21THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND 22CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, 23INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 24MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 25IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY 26DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 27DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 28GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 30IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 31OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 32IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 34 35Relicensed code 36=============== 37 38The following code snippets have been taken from other projects. 39Even though they were not originally licensed under the terms above, 40the original authors have agreed to relicense their work so that 41this project can be distributed under a single license. This section 42is put here just to clarify this fact. 43 44* configure.ac, Makefile.am: The original versions were derived from 45 the ones in the XML Catalog Manager project, version 2.2. 46 Author: Julio M. Merino Vidal <jmmv@users.sourceforge.net> 47 48* atf-c/ui.c: The format_paragraph and format_text functions were 49 derived form the ones in the Monotone project, 50 revision 3a0982da308228d796df35f98d787c5cff2bb5b6. 51 Author: Julio M. Merino Vidal <jmmv@NetBSD.org> 52 53* atf-c++/io.hpp, atf-c++/io.cpp, tests/atf-c++/t_io.cpp: These files 54 were derived from the file_handle, systembuf, pipe, pistream and 55 postream classes and tests found in the Boost.Process library. 56 Author: Julio M. Merino Vidal <jmmv84@gmail.com> 57 58* admin/check-style.sh, admin/check-style-common.awk, 59 admin/check-style-cpp.awk, admin/check-style-shell.awk: These files, 60 except the first one, were first implemented in the Buildtool project. 61 They were later adapted to be part of Boost.Process and, during that 62 process, the shell script was created. 63 Author: Julio M. Merino Vidal <jmmv84@gmail.com> 64 65 66--------------------------------------------------------------------------- 67 End of document 68