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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/*
libdmtx - Data Matrix Encoding/Decoding Library
Copyright (C) 2007, 2008, 2009 Mike Laughton
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Contact: mike@dragonflylogic.com
*/
/* $Id: unit_test.c 770 2009-03-02 22:16:32Z mblaughton $ */
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "../../dmtx.h"
#include "../../util/common/dmtxutil.h"
char *programName;
static void timeAddTest(void);
static void timePrint(DmtxTime t);
int
main(int argc, char *argv[])
{
programName = argv[0];
timeAddTest();
exit(0);
}
/**
*
*
*/
static void
timePrint(DmtxTime t)
{
#ifdef _MSC_VER
fprintf(stdout, "t.sec: %llu\n", t.sec);
#else
fprintf(stdout, "t.sec: %lu\n", t.sec);
#endif
fprintf(stdout, "t.usec: %lu\n", t.usec);
}
/**
*
*
*/
static void
timeAddTest(void)
{
DmtxTime t0, t1;
t0 = dmtxTimeNow();
t0.usec = 999000;
t1 = dmtxTimeAdd(t0, 0);
if(memcmp(&t0, &t1, sizeof(DmtxTime)) != 0)
FatalError(1, "timeAddTest\n");
t1 = dmtxTimeAdd(t0, 1);
if(memcmp(&t0, &t1, sizeof(DmtxTime)) == 0)
FatalError(2, "timeAddTest\n");
t1 = dmtxTimeAdd(t0, 1);
if(t1.sec != t0.sec + 1 || t1.usec != 0) {
timePrint(t0);
timePrint(t1);
FatalError(3, "timeAddTest\n");
}
t1 = dmtxTimeAdd(t0, 1001);
if(t1.sec != t0.sec + 2 || t1.usec != 0) {
timePrint(t0);
timePrint(t1);
FatalError(4, "timeAddTest\n");
}
t1 = dmtxTimeAdd(t0, 2002);
if(t1.sec != t0.sec + 3 || t1.usec != 1000) {
timePrint(t0);
timePrint(t1);
FatalError(5, "timeAddTest\n");
}
}
/**
*
*
*/
/**
static void
TestRGB(void)
{
unsigned char *pxl;
FILE *fp;
pxl = (unsigned char *)malloc(320 * 240 * 3);
assert(pxl != NULL);
fp = fopen("fruit_matrix.rgb", "rb");
assert(fp != NULL);
fread(ptr, 3, 320 * 240, fp);
fclose(fp);
dmtxImageCreate(ptr, 320, 240, DmtxPack24bppRGB);
}
*/
|