2002-09-20 13:17:59 -04:00
|
|
|
#include "LoadedCommand.h"
|
2002-12-05 11:55:53 -05:00
|
|
|
#include <stdio.h>
|
2002-09-20 13:17:59 -04:00
|
|
|
|
2004-10-25 15:08:05 -04:00
|
|
|
int testSizeOf(int s1, int s2)
|
|
|
|
{
|
|
|
|
return s1 - s2;
|
|
|
|
}
|
|
|
|
|
2002-09-16 16:27:00 -04:00
|
|
|
int main ()
|
|
|
|
{
|
2004-10-25 15:08:05 -04:00
|
|
|
int ret = 0;
|
2002-12-05 11:55:53 -05:00
|
|
|
|
2003-07-22 12:21:15 -04:00
|
|
|
#if !defined( ADDED_DEFINITION )
|
|
|
|
printf("Should have ADDED_DEFINITION defined\n");
|
2004-10-25 15:08:05 -04:00
|
|
|
ret= 1;
|
|
|
|
#endif
|
|
|
|
#if !defined(CMAKE_IS_FUN)
|
|
|
|
printf("Loaded Command was not built with CMAKE_IS_FUN: failed.\n");
|
|
|
|
ret = 1;
|
2003-07-22 12:21:15 -04:00
|
|
|
#endif
|
2004-10-25 15:08:05 -04:00
|
|
|
if(testSizeOf(SIZEOF_CHAR, sizeof(char)))
|
2004-10-25 11:59:50 -04:00
|
|
|
{
|
2004-10-25 15:08:05 -04:00
|
|
|
printf("Size of char is broken.\n");
|
|
|
|
ret = 1;
|
2004-10-25 11:59:50 -04:00
|
|
|
}
|
2004-10-25 15:08:05 -04:00
|
|
|
if(testSizeOf(SIZEOF_SHORT, sizeof(short)))
|
|
|
|
{
|
|
|
|
printf("Size of short is broken.\n");
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
return ret;
|
2002-09-16 16:27:00 -04:00
|
|
|
}
|