blob: 5e1a81c10e7f0bcca1bc51d647dbd06b3786fd65 [file] [log] [blame]
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -04001// : vi ts=4 sw=4 noet :
2/*
3==================================================================================
E. Scott Daniels8790bf02019-04-23 12:59:28 +00004 Copyright (c) 2019 Nokia
5 Copyright (c) 2018-2019 AT&T Intellectual Property.
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -04006
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
10
E. Scott Daniels8790bf02019-04-23 12:59:28 +000011 http://www.apache.org/licenses/LICENSE-2.0
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040012
13 Unless required by applicable law or agreed to in writing, software
14 distributed under the License is distributed on an "AS IS" BASIS,
15 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 See the License for the specific language governing permissions and
17 limitations under the License.
18==================================================================================
19*/
20
21/*
22 Mmemonic: ring_test.c
E. Scott Daniels8790bf02019-04-23 12:59:28 +000023 Abstract: This is a stand alone test driver for the ring module. It
E. Scott Daniels8dd46412019-04-16 20:47:54 +000024 includes the static tests after setting up the environment
25 then invokes it.
26
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040027 Author: E. Scott Daniels
E. Scott Daniels8dd46412019-04-16 20:47:54 +000028 Date: 3 April 2019
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040029*/
30
31#include <unistd.h>
32#include <stdio.h>
33#include <stdlib.h>
34#include <strings.h>
35#include <errno.h>
36#include <string.h>
37#include <stdint.h>
38
39#include "../src/common/include/rmr.h"
40#include "../src/common/include/rmr_agnostic.h"
41#include "../src/common/src/ring_static.c"
42
E. Scott Daniels8dd46412019-04-16 20:47:54 +000043#include "test_support.c" // things like fail_if()
44#include "ring_static_test.c" // the actual tests
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040045
E. Scott Daniels8dd46412019-04-16 20:47:54 +000046int main( ) {
47 int errors = 0;
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040048
E. Scott Daniels8dd46412019-04-16 20:47:54 +000049 errors += ring_test( );
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040050
E. Scott Daniels8dd46412019-04-16 20:47:54 +000051 if( errors ) {
52 fprintf( stderr, "<FAIL> ring tests failed\n" );
53 } else {
54 fprintf( stderr, "<OK> ring tests pass\n" );
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040055 }
56
E. Scott Daniels8dd46412019-04-16 20:47:54 +000057 return errors;
Ashwin Sridharanfd9cc7a2019-04-03 16:47:02 -040058}