blob: 0ae045b9573836725b92cf10fef7533e73660a7d [file] [log] [blame]
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2017 Cisco and/or its affiliates.
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
18#include <main_test.h>
19#include <socket_test.h>
20
21int
22on_connect (memif_conn_handle_t conn, void *ctx)
23{
24 return 0;
25}
26
27int
28on_disconnect (memif_conn_handle_t conn, void *ctx)
29{
30 return 0;
31}
32
33int
34on_interrupt (memif_conn_handle_t conn, void *ctx, uint16_t qid)
35{
36 return 0;
37}
38
39int
Jakub Grajciar12df4972019-07-01 14:24:48 +020040control_fd_update (int fd, uint8_t events, void *ctx)
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +020041{
42 return 0;
43}
44
45int
46main (void)
47{
48 int num_fail;
Benoît Ganne49ee6842019-04-30 11:50:46 +020049 Suite *mains, *socket;
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +020050 SRunner *sr;
51
Benoît Ganne49ee6842019-04-30 11:50:46 +020052 mains = main_suite ();
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +020053 socket = socket_suite ();
54
Benoît Ganne49ee6842019-04-30 11:50:46 +020055 sr = srunner_create (mains);
Jakub Grajciar7c5c40d2017-08-30 10:13:25 +020056
57 srunner_add_suite (sr, socket);
58
59 srunner_run_all (sr, CK_VERBOSE);
60 num_fail = srunner_ntests_failed (sr);
61 srunner_free (sr);
62 return (num_fail == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
63}