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
18 * along with Quagga; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
30 /* function to be implemented by test */
31 extern void test_init (void);
33 /* functions provided by common cli
36 extern struct thread_master *master;
38 extern int dump_args(struct vty *vty, const char *descr,
39 int argc, const char **argv);
41 #define DUMMY_HELPSTR \
42 "00\n01\n02\n03\n04\n05\n06\n07\n08\n09\n" \
43 "10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n" \
44 "20\n21\n22\n23\n24\n25\n26\n27\n28\n29\n"
45 #define DUMMY_DEFUN(name, cmdstr) \
46 DEFUN (name, name ## _cmd, cmdstr, DUMMY_HELPSTR) \
47 { return dump_args(vty, #name, argc, argv); }
49 #endif /* _COMMON_CLI_H */