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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
/*
!!DESCRIPTION!! regression testing program for comparing longs
!!ORIGIN!! SDCC regression tests
!!LICENCE!! GPL, read COPYING.GPL
*/
#include <stdio.h>
#include <limits.h>
/*
compare5.c
*/
#define COMPARE_OUT_OF_RANGE 1
unsigned char success = 0;
unsigned char failures = 0;
unsigned char dummy = 0;
int int0 = 0;
int int1 = 0;
char char0 = 0;
char char1 = 0;
long long0 = 0;
long long1 = 0;
unsigned long ulong0 = 0;
unsigned long ulong1 = 0;
void
done ()
{
dummy++;
}
/* compare to 0
assumes
long0 == 0
ulong0 == 0
*/
void c_0(void)
{
if(long0 != 0)
failures++;
if(long0 > 0)
failures++;
if(ulong0 != 0)
failures++;
if(ulong0 > 0)
failures++;
}
/* compare to 1
assumes
long1 == 1
ulong1 == 1
*/
void c_1(void)
{
if(long0 == 1)
failures++;
if(long1 != 1)
failures++;
if(ulong0 == 1)
failures++;
if(ulong1 != 1)
failures++;
if(long1 < 0)
failures++;
if(long1 < 1)
failures++;
if(ulong1 < 1)
failures++;
if(long1 > 1)
failures++;
if(ulong1 > 1)
failures++;
}
/* compare to 2
assumes
long0 == 2
ulong0 == 2
*/
void c_2(void)
{
if(long0 != 2)
failures++;
if(ulong0 != 2)
failures++;
if(long1 == 2)
failures++;
if(ulong1 == 2)
failures++;
}
/* compare to 0xff
assumes
achar0 == 0xff
aint0 == 0xff
*/
void c_ff(void)
{
if(long0 != 0xff)
failures++;
if(ulong0 != 0xff)
failures++;
if(long1 == 0xff)
failures++;
if(ulong1 == 0xff)
failures++;
}
/* compare to 0x200
assumes
achar0 == 0x200
aint0 == 0x200
*/
void c_200(void)
{
if(long0 != 0x200)
failures++;
if(ulong0 != 0x200)
failures++;
if(long1 == 0x200)
failures++;
if(ulong1 == 0x200)
failures++;
}
/* compare to 0x20000
assumes
long0 == 0x20000
ulong0 == 0x20000
long1 != 0x20000
ulong1 != 0x20000
*/
void c_20000(void)
{
if(long0 != 0x20000)
failures++;
if(ulong0 != 0x20000)
failures++;
if(long1 == 0x20000)
failures++;
if(ulong1 == 0x20000)
failures++;
if(long0 <= 0x10000)
failures++;
if(long0 < 0x10000)
failures++;
/* if(long0 < 0x12345)
failures++;
*/
if(long0 == 0)
failures++;
}
/* compare to 0x00a5
assumes
char0 == 0xa5
int0 == 0x00a5
*/
void c_a5(void)
{
if(char0 != 0xa5)
failures++;
if(int0 != 0xa5)
failures++;
if(int0 == 0xa4)
failures++;
if(int0 == 0xa500)
failures++;
}
/* compare to 0xa500
assumes
char0 == 0xa5
int0 == 0xa500
*/
void c_a500(void)
{
#ifdef COMPARE_OUT_OF_RANGE
if(char0 == 0xa500)
failures++;
#endif
if(int0 != 0xa500)
failures++;
if(int0 == 0xa400)
failures++;
if(int0 == 0x00a5)
failures++;
}
/* compare to 0xabcd
assumes
char0 == 0xa5
int0 == 0xabcd
*/
void c_abcd(void)
{
#ifdef COMPARE_OUT_OF_RANGE
if(char0 == 0xabcd)
failures++;
#endif
if(int0 != 0xabcd)
failures++;
if(int0 == 0xab00)
failures++;
if(int0 == 0x00cd)
failures++;
if(int0 == 0x05cd)
failures++;
if(int0 == 0xab05)
failures++;
if(int0 == 0xab01)
failures++;
if(int0 == 0x01cd)
failures++;
if(int0 > 0)
failures++;
#ifdef COMPARE_OUT_OF_RANGE
if(int0 == 0x1234abcd)
failures++;
#endif
}
/* assumes char1 == 0 */
void c_ifelse1(void)
{
if(char0)
char0 = char1;
else
char0 = 0;
if(char0)
failures++;
}
/*
assumes long0 = -1
assumes long1 = 1
*/
void c_minus1(void)
{
printf("long0:%ld long1:%ld\n",long0,long1);
printf("(long0 != -1)\n");
if(long0 != -1)
{
failures++;
}
printf("(long0 > 0)\n");
if(long0 > 0)
{
failures++;
}
printf("(long1 < 0)\n");
if(long1 < 0)
{
failures++;
}
/*
if(long1 < 2)
failures++;
*/
}
/* assumes
long0 = long1 = ulong0 = ulong1 == 0
*/
void c_long2long_eq(void)
{
if(long0 != long1)
failures++;
if(ulong0 != ulong1)
failures++;
if(long0 != ulong1)
failures++;
if(long0 > long1)
failures++;
if(long0 < long1)
failures++;
if(long0 > ulong0)
failures++;
if(long0 < ulong0)
failures++;
}
/* assumes
long0 = ulong0 == 0
long1 = ulong1 == 1
*/
void c_long2long_neq(void)
{
if(long0 == long1)
failures++;
if(ulong0 == ulong1)
failures++;
if(long1 != ulong1)
failures++;
if(long1 < long0)
failures++;
if(long1 <= long0)
failures++;
if(ulong1 < ulong0)
failures++;
if(ulong1 <= ulong0)
failures++;
}
/* long0=-100;
long1=-1000;
*/
void
c_long2neglit(void)
{
if(long0>0)
failures++;
if(long1>0)
failures++;
if(long1 > long0)
failures++;
if(long1 > 100)
failures++;
if(long0 > -50)
failures++;
if(long1 < -5000)
failures++;
}
int
main (void)
{
c_0();
printf("c_0: %d\n",failures);
c_long2long_eq();
printf("c_long2long_eq: %d\n",failures);
long1 = 1;
ulong1 = 1;
c_1();
printf("c_1: %d\n",failures);
c_long2long_neq();
printf("c_long2long_neq: %d\n",failures);
long0 = 2;
ulong0 = 2;
c_2();
printf("c_2: %d\n",failures);
long0 = 0xff;
ulong0 = 0xff;
c_ff();
printf("c_ff: %d\n",failures);
long0 = 0x200;
ulong0 = 0x200;
c_200();
printf("c_200: %d\n",failures);
long0 = 0x20000;
ulong0 = 0x20000;
c_20000();
printf("c_20000: %d\n",failures);
long0 = -1;
c_minus1();
printf("c_minus1: %d\n",failures);
long0=-100;
long1=-1000;
c_long2neglit();
printf("c_long2neglit: %d\n",failures);
success = failures;
done ();
printf("failures: %d\n",failures);
return failures;
}
|