You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1010 B
42 lines
1010 B
/* |
|
* Copyright (C) 2016 Freie Universität Berlin |
|
* |
|
* This file is subject to the terms and conditions of the GNU Lesser |
|
* General Public License v2.1. See the file LICENSE in the top level |
|
* directory for more details. |
|
*/ |
|
|
|
/** |
|
* @ingroup tests |
|
* @{ |
|
* |
|
* @file |
|
* @brief Tests od module. |
|
* |
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de> |
|
* |
|
* @} |
|
*/ |
|
|
|
#include <stdio.h> |
|
|
|
#include "od.h" |
|
|
|
#define CALL(fn) puts(#fn); fn |
|
|
|
static const char short_str[] = "AB"; |
|
static const char long_str[] = "\xff,a\xff.bcdefghijklmnop"; |
|
|
|
int main(void) |
|
{ |
|
/* test data width vs. output width discrepency */ |
|
CALL(od_hex_dump(short_str, sizeof(short_str), OD_WIDTH_DEFAULT)); |
|
|
|
/* Test different output width in default configuration*/ |
|
CALL(od_hex_dump(long_str, sizeof(long_str), OD_WIDTH_DEFAULT)); |
|
CALL(od_hex_dump(long_str, sizeof(long_str), 4)); |
|
CALL(od_hex_dump(long_str, sizeof(long_str), 3)); |
|
CALL(od_hex_dump(long_str, sizeof(long_str), 8)); |
|
|
|
return 0; |
|
}
|
|
|