Create a unit-test plugin
[vpp.git] / src / plugins / unittest / util_test.c
1 /*
2  * Copyright (c) 2018 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <vlib/vlib.h>
17
18 static clib_error_t *
19 test_crash_command_fn (vlib_main_t * vm,
20                        unformat_input_t * input, vlib_cli_command_t * cmd)
21 {
22   u64 *p = (u64 *) 0xdefec8ed;
23
24   /* *INDENT-OFF* */
25   ELOG_TYPE_DECLARE (e) =
26     {
27       .format = "deliberate crash: touching %x",
28       .format_args = "i4",
29     };
30   /* *INDENT-ON* */
31   elog (&vm->elog_main, &e, 0xdefec8ed);
32
33   *p = 0xdeadbeef;
34
35   /* Not so much... */
36   return 0;
37 }
38
39 /* *INDENT-OFF* */
40 VLIB_CLI_COMMAND (test_crash_command, static) =
41 {
42   .path = "test crash",
43   .short_help = "crash the bus!",
44   .function = test_crash_command_fn,
45 };
46 /* *INDENT-ON* */
47
48 /*
49  * fd.io coding-style-patch-verification: ON
50  *
51  * Local Variables:
52  * eval: (c-set-style "gnu")
53  * End:
54  */