Initial commit of vpp code.
[vpp.git] / vppinfra / vppinfra / test_macros.c
1 /*
2   Copyright (c) 2014 Cisco and/or its affiliates.
3
4   * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15 */
16
17 #include <vppinfra/macros.h>
18
19 macro_main_t macro_main;
20
21 int test_macros_main (unformat_input_t * input)
22 {
23   macro_main_t * mm = &macro_main;
24
25   clib_macro_init(mm);
26
27   fformat (stdout, "hostname: %s\n", 
28            clib_macro_eval_dollar (mm, "hostname", 1 /* complain */));
29
30   clib_macro_set_value (mm, "foo", "this is foo which contains $(bar)");
31   clib_macro_set_value (mm, "bar", "bar");
32
33   fformat (stdout, "evaluate: %s\n",
34            clib_macro_eval (mm, "returns '$(foo)'", 1 /* complain */));
35
36   clib_macro_free (mm);
37
38   return 0;
39 }
40
41 #ifdef CLIB_UNIX
42 int main (int argc, char * argv[])
43 {
44   unformat_input_t i;
45   int ret;
46
47   unformat_init_command_line (&i, argv);
48   ret = test_macros_main (&i);
49   unformat_free (&i);
50
51   return ret;
52 }
53 #endif /* CLIB_UNIX */
54