]> git.proxmox.com Git - mirror_frr.git/blame - tests/lib/cli/common_cli.h
*: make consistent & update GPLv2 file headers
[mirror_frr.git] / tests / lib / cli / common_cli.h
CommitLineData
2bb57c68
DL
1/*
2 * generic CLI test helper functions
3 *
4 * Copyright (C) 2015 by David Lamparter,
5 * for Open Source Routing / NetDEF, Inc.
6 *
7 * Quagga is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * Quagga is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2bb57c68
DL
20 */
21
22#ifndef _COMMON_CLI_H
23#define _COMMON_CLI_H
24
25#include "zebra.h"
26#include "vty.h"
27#include "command.h"
28
29/* function to be implemented by test */
fdc3d1ab 30extern void test_init (int argc, char **argv);
2bb57c68
DL
31
32/* functions provided by common cli
33 * (includes main())
34 */
35extern struct thread_master *master;
36
37extern int dump_args(struct vty *vty, const char *descr,
6a23719c 38 int argc, struct cmd_token *argv[]);
2bb57c68
DL
39
40#define DUMMY_HELPSTR \
41 "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n" \
42 "10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n" \
43 "20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n"
44#define DUMMY_DEFUN(name, cmdstr) \
45 DEFUN (name, name ## _cmd, cmdstr, DUMMY_HELPSTR) \
46 { return dump_args(vty, #name, argc, argv); }
47
48#endif /* _COMMON_CLI_H */