File: test_syndromes.c

package info (click to toggle)
libbtbb 2018.12.R1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,852 kB
  • sloc: ansic: 20,088; python: 922; sh: 186; makefile: 128; ruby: 21
file content (100 lines) | stat: -rw-r--r-- 2,482 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/* -*- c -*- */
/*
 * Copyright 2007 - 2011 Dominic Spill, Michael Ossmann                                                                                            
 * 
 * This file is part of libbtbb
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2, or (at your option)
 * any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with libbtbb; see the file COPYING.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street,
 * Boston, MA 02110-1301, USA.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "../bluetooth_packet.h"
#include <stdio.h>

int test_syndromes() {
    int ret, i;
    uint64_t syndrome, syncword;
    ret = 0;

    printf("Testing syndromes\n");
    printf("-----------------\n");

    uint64_t syndrome_input[2] = {
        /* No errors */
        0xcc7b7268ff614e1b,
        /* Errors */
        0xcc7d7268ff614e1b
    };

    uint64_t syndrome_output[2] = {
        /* No errors */
        0,
        /* Errors */
        0x0000000299c6f9b5
    };

    for(i = 0; i < 2; i++) {
        syndrome = gen_syndrome(syndrome_input[i]);
        if (syndrome == syndrome_output[i]) {
            printf(".");
        } else {
            printf("F");
            ret++;
        }
    }

    uint64_t syncword_input[2] = {
        /* No errors */
        0xcc7b7268ff614e1b,
        /* Errors */
        0xcc7b7268ff514e1b
    };

    uint64_t syncword_output[2] = {
        /* No errors */
        0x4ffffffe44ad1ae7,
        /* Errors */
        0x4ffffffe44ad1ae7
    };

    gen_syndrome_map();
    for(i = 0; i < 2; i++) {
        syncword = decode_syncword(syncword_input[i] ^ pn);
        if (syncword == syncword_output[i]) {
            printf(".");
        } else {
            printf("F");
            ret++;
        }
    }

	if (ret > 0)
		printf("%d errors\n", ret);
    printf("\n-----------------\n");
    printf("Done testing syndrome generation\n");
    return ret;
}

int main(int argc, char** argv) {
    int ret = 0;

    ret += test_syndromes();

    exit(ret);
}