2 // Automated Testing Framework (atf)
4 // Copyright (c) 2007, 2008 The NetBSD Foundation, Inc.
5 // All rights reserved.
7 // Redistribution and use in source and binary forms, with or without
8 // modification, are permitted provided that the following conditions
10 // 1. Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer.
12 // 2. 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.
16 // THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
17 // CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 // IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
23 // GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 // IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27 // IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 #include "atf-c++/application.hpp"
34 #include "atf-c++/fs.hpp"
35 #include "atf-c++/ui.hpp"
37 class atf_cleanup
: public atf::application::app
{
38 static const char* m_description
;
40 std::string
specific_args(void) const;
48 const char* atf_cleanup::m_description
=
49 "atf-cleanup recursively removes a test case's work directory, "
50 "unmounting any file systems it may contain and preventing to "
51 "recurse into them if the unmounting fails.";
53 atf_cleanup::atf_cleanup(void) :
54 app(m_description
, "atf-cleanup(1)", "atf(7)")
59 atf_cleanup::specific_args(void)
62 return "[path1 [.. pathN]]";
66 atf_cleanup::main(void)
68 for (int i
= 0; i
< m_argc
; i
++)
69 atf::fs::cleanup(atf::fs::path(m_argv
[i
]));
75 main(int argc
, char* const* argv
)
77 return atf_cleanup().run(argc
, argv
);