Files
pvData/testApp/pv/testPVType.cpp
Michael Davidsaver 3e25c2ea46 fix more printf specs
2018-01-04 11:52:19 -08:00

68 lines
1.5 KiB
C++

/* testPVType.cpp */
/*
* Copyright information and license terms for this software can be
* found in the file LICENSE that is included with the distribution
*/
/* Author: Marty Kraimer Date: 2010.09 */
#include <cstddef>
#include <cstdlib>
#include <cstddef>
#include <string>
#include <cstdio>
#include <epicsUnitTest.h>
#include <testMain.h>
#include <pv/pvType.h>
using namespace epics::pvData;
MAIN(testPVType)
{
testPlan(6);
testOk1(sizeof(int8)==1);
testOk1(sizeof(int16)==2);
testOk1(sizeof(int32)==4);
testOk1(sizeof(int64)==8);
testOk1(sizeof(uint32)==4);
testOk1(sizeof(uint64)==8);
int intValue;
int8 byteInt;
intValue = 0x7f;
byteInt = intValue;
printf("int8 max %d",(int)byteInt);
intValue = 0x80;
byteInt = intValue;
printf(" min %d\n",(int)byteInt);
int16 shortInt;
intValue = 0x7fff;
shortInt = intValue;
printf("int8 max %hd",shortInt);
intValue = 0x8000;
shortInt = intValue;
printf(" min %hd\n",shortInt);
int32 intInt;
intValue = 0x7fffffff;
intInt = intValue;
printf("int8 max %d",(int)intInt);
intValue = 0x80000000;
intInt = intValue;
printf(" min %d\n",(int)intInt);
int64 longInt = 0x7fffffff;
longInt <<= 32;
longInt |= 0xffffffff;
printf("int8 max %lld",(long long)longInt);
longInt = intValue = 0x80000000;;
longInt <<= 32;
printf(" min %lld\n",(long long)longInt);
printf("PASSED\n");
return testDone();
}