indexing description: "Eiffel test suite options" legal: "See notice at end of class." status: "See notice at end of class."; date: "93/10/11" class TEST_SUITE_OPTIONS create make feature -- Creation make is do create {FILTER_ALL} filter; end; feature -- Properties keep_all: BOOLEAN; -- Should output from all tests be retained, -- regardless of whether they passed or failed? keep_passed: BOOLEAN; -- Should output from only passed tests be retained? keep_failed: BOOLEAN; -- Should output from only failed tests be retained? is_cleanup_requested: BOOLEAN; -- Should EIFGEN tree for retained directories -- be deleted? filter: EIFFEL_TEST_FILTER; -- Execute only tests selected by this filter feature -- Modification set_keep_all is do keep_all := True keep_passed := False keep_failed := False ensure keep_option_set: keep_all end; set_keep_passed is do keep_all := False keep_passed := True keep_failed := False ensure keep_option_set: keep_passed end; set_keep_failed is do keep_all := False keep_passed := False keep_failed := True ensure keep_option_set: keep_failed end; set_cleanup_requested (b: BOOLEAN) is do is_cleanup_requested := b end; set_filter (f: EIFFEL_TEST_FILTER) is do filter := f; ensure filter_set: filter = f end; indexing copyright: "[ Copyright (c) 1984-2007, University of Southern California and contributors. All rights reserved. ]" license: "Your use of this work is governed under the terms of the GNU General Public License version 2" copying: "[ This file is part of the EiffelWeasel Eiffel Regression Tester. The EiffelWeasel Eiffel Regression Tester is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. The EiffelWeasel Eiffel Regression Tester is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License version 2 for more details. You should have received a copy of the GNU General Public License version 2 along with the EiffelWeasel Eiffel Regression Tester if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA ]" end