]>
git.proxmox.com Git - mirror_frr.git/blob - tests/lib/cli/common_cli.h
2 * generic CLI test helper functions
4 * Copyright (C) 2015 by David Lamparter,
5 * for Open Source Routing / NetDEF, Inc.
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
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.
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
29 /* function to be implemented by test */
30 extern void test_init(int argc
, char **argv
);
32 /* functions provided by common cli
35 extern struct thread_master
*master
;
37 extern int dump_args(struct vty
*vty
, const char *descr
, int argc
,
38 struct cmd_token
*argv
[]);
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) \
47 return dump_args(vty, #name, argc, argv); \
50 #endif /* _COMMON_CLI_H */