xref: /freebsd/contrib/kyua/main.cpp (revision 257e70f1d5ee61037c8c59b116538d3b6b1427a2)
1b0d29bc4SBrooks Davis // Copyright 2010 The Kyua Authors.
2b0d29bc4SBrooks Davis // All rights reserved.
3b0d29bc4SBrooks Davis //
4b0d29bc4SBrooks Davis // Redistribution and use in source and binary forms, with or without
5b0d29bc4SBrooks Davis // modification, are permitted provided that the following conditions are
6b0d29bc4SBrooks Davis // met:
7b0d29bc4SBrooks Davis //
8b0d29bc4SBrooks Davis // * Redistributions of source code must retain the above copyright
9b0d29bc4SBrooks Davis //   notice, this list of conditions and the following disclaimer.
10b0d29bc4SBrooks Davis // * Redistributions in binary form must reproduce the above copyright
11b0d29bc4SBrooks Davis //   notice, this list of conditions and the following disclaimer in the
12b0d29bc4SBrooks Davis //   documentation and/or other materials provided with the distribution.
13b0d29bc4SBrooks Davis // * Neither the name of Google Inc. nor the names of its contributors
14b0d29bc4SBrooks Davis //   may be used to endorse or promote products derived from this software
15b0d29bc4SBrooks Davis //   without specific prior written permission.
16b0d29bc4SBrooks Davis //
17b0d29bc4SBrooks Davis // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18b0d29bc4SBrooks Davis // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19b0d29bc4SBrooks Davis // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20b0d29bc4SBrooks Davis // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21b0d29bc4SBrooks Davis // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22b0d29bc4SBrooks Davis // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23b0d29bc4SBrooks Davis // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24b0d29bc4SBrooks Davis // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25b0d29bc4SBrooks Davis // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26b0d29bc4SBrooks Davis // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27b0d29bc4SBrooks Davis // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28b0d29bc4SBrooks Davis 
29b0d29bc4SBrooks Davis #include "cli/main.hpp"
30*257e70f1SIgor Ostapenko #include "os/freebsd/main.hpp"
31b0d29bc4SBrooks Davis 
32b0d29bc4SBrooks Davis 
33b0d29bc4SBrooks Davis /// Program entry point.
34b0d29bc4SBrooks Davis ///
35b0d29bc4SBrooks Davis /// The whole purpose of this extremely-simple function is to delegate execution
36b0d29bc4SBrooks Davis /// to an internal module that does not contain a proper ::main() function.
37b0d29bc4SBrooks Davis /// This is to allow unit-testing of the internal code.
38b0d29bc4SBrooks Davis ///
39b0d29bc4SBrooks Davis /// \param argc The number of arguments passed on the command line.
40b0d29bc4SBrooks Davis /// \param argv NULL-terminated array containing the command line arguments.
41b0d29bc4SBrooks Davis ///
42b0d29bc4SBrooks Davis /// \return 0 on success, some other integer on error.
43b0d29bc4SBrooks Davis ///
44b0d29bc4SBrooks Davis /// \throw std::exception This throws any uncaught exception.  Such exceptions
45b0d29bc4SBrooks Davis ///     are bugs, but we let them propagate so that the runtime will abort and
46b0d29bc4SBrooks Davis ///     dump core.
47b0d29bc4SBrooks Davis int
main(const int argc,const char * const * const argv)48b0d29bc4SBrooks Davis main(const int argc, const char* const* const argv)
49b0d29bc4SBrooks Davis {
50*257e70f1SIgor Ostapenko     freebsd::main(argc, argv);
51*257e70f1SIgor Ostapenko 
52b0d29bc4SBrooks Davis     return cli::main(argc, argv);
53b0d29bc4SBrooks Davis }
54