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 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526
|
;; test some language elements of GDL
pro if_test
if 1 then $
if 0 then begin & end $
else if 1 then $
if 0 then begin & end $
else a=1e
if a ne 1e then begin
message, '***IF: ERROR', /conti
exit, status=1
endif
print, 'IF: OK'
end
pro switch_test
a='abc'
;; empty
switch a of
1:
complex(1): begin & end
'def':
'abc':
1.0: begin & end
else:
endswitch
switch a of
1: begin
message, '***SWITCH: ERROR', /conti
exit, status=1
end
complex(1): begin
message, '***SWITCH: ERROR', /conti
exit, status=1
end
'def': begin
message, '***SWITCH: ERROR', /conti
exit, status=1
end
'abc': begin
abc = 1
end
1.0: fall = abc+1
else: e=1
endswitch
if abc ne 1 then begin
message, '***SWITCH: ERROR', /conti
exit, status=1
endif
if fall ne abc+1 then begin
message, '***SWITCH: ERROR', /conti
exit, status=1
endif
if e ne 1 then begin
message, '***SWITCH: ERROR', /conti
exit, status=1
endif
switch 1 of
0: begin
message, "***SWITCH: ERROR", /conti
exit, status=1
end
0: begin
message, "***SWITCH: ERROR", /conti
exit, status=1
end
1:
endswitch
print,'SWITCH: OK'
end
pro case_test
a='abc'
case a of
1: begin
message, '***CASE: ERROR', /conti
exit, status=1
end
complex(1): begin
message, '***CASE: ERROR', /conti
exit, status=1
end
'def': begin
message, '***CASE: ERROR', /conti
exit, status=1
end
'abc': begin
c=1
end
1.0: begin
message, '***CASE: ERROR', /conti
exit, status=1
end
else: begin
message, '***CASE: ERROR', /conti
exit, status=1
end
endcase
if c ne 1 then begin
message, '***CASE: ERROR', /conti
exit, status=1
endif
case a of
1: begin
message, '***CASE: ERROR', /conti
exit, status=1
end
complex(1): begin
message, '***CASE: ERROR', /conti
exit, status=1
end
'def': begin
message, '***CASE: ERROR', /conti
exit, status=1
end
'a': begin
message, '***CASE: ERROR', /conti
exit, status=1
end
1.0d: begin
message, '***CASE: ERROR', /conti
exit, status=1
end
else: e=1
end
if e ne 1 then begin
message, '***CASE: ERROR', /conti
exit, status=1
endif
case 1 of
0: begin
message, "***CASE: ERROR", /conti
exit, status=1
end
0: begin
message, "***CASE: ERROR", /conti
exit, status=1
end
1:
endcase
print, 'CASE: OK'
end
pro while_test
i=0
while i lt 100 do begin
i=i+1
endwhile
if i eq 100 then print,'WHILE: OK' else begin
message, '***WHILE: ERROR', /conti
exit, status=1
endelse
end
pro for_test
c=0
for i=0,99 do c=c+1
if c ne 100 then begin
message, '***FOR: ERROR', /conti
exit, status=1
endif
c=0
for i=0,990,10 do c=c+1
if c ne 100 then begin
message, '***FOR: Step: ERROR', /conti
exit, status=1
endif
a=0
for i=0, 0 do begin
for j=0, 1 do begin
if i eq 0 then continue
endfor
a = 1
endfor
if a eq 0 then begin
message, '***FOR: CONTINUE: ERROR', /conti
exit, status=1
endif
print, 'FOR: OK'
end
pro repeat_test
i=0
repeat begin
i=i+1
endrep until (i eq 100)
; gdl says : "% Warning: Empty REPEAT UNTIL loop detected."
repeat begin
endrep until (i eq 100)
; gdl says : "% Warning: Empty REPEAT UNTIL loop detected."
repeat begin
endrep until 1
if i eq 100 then print,'REPEAT: OK' else begin
message, '***REPEAT: ERROR', /conti
exit, status=1
endelse
end
pro goto_test
;; simple
goto,jump11
message, '***GOTO: Error', /conti
exit, status=1
jump21:
goto,jump31
message, '***GOTO: Error', /conti
exit, status=1
jump11:
goto,jump21
message, '***GOTO: Error', /conti
exit, status=1
jump31:
count=0
;; within loop
for i=0,10 do begin
goto,jump1
message, '***GOTO: Error1', /conti
exit, status=1
jump2:
goto,jump3
message, '***GOTO: Error2', /conti
exit, status=1
jump1:
goto,jump2
message, '***GOTO: Error3', /conti
exit, status=1
jump3:
goto,jump4 ; even to jump out of the block and in again is ok
jump5:
if 0 then goto,jump5 else goto,jump7
message, '***GOTO: Error4', /conti
exit, status=1
jump7:
if 1 then begin
goto,jump8
message, '***GOTO: Error5', /conti
exit, status=1
jump8:
endif else begin
message, '***GOTO: Error6', /conti
exit, status=1
endelse
count=count+1
endfor
goto,jump6
jump4:
goto,jump5
jump6:
if count ne 11 then begin
message, '***GOTO: ERROR7', /conti
exit, status=1
endif
IF (1)then begin
IF (1)then begin
;print,"Going to Label1"
goto, Label1
end else begin
message, '***GOTO: ERROR8', /conti
exit, status=1
end
Label1:
end
print,'GOTO: OK'
end
function REF_PAR_RET,x
return,(1?x:1)
end
pro ref_par_called,x,y,target
if x ne target or y ne target then print,"REF_PAR: error 4"
x=537
y=537
end
pro REF_PAR_TEST
p = ptr_new(10)
a = 10
ref_par_called,(REF_PAR_RET(a)),(REF_PAR_RET(*p)),10
if a NE 537 OR *p NE 537 then print,"REF_PAR: error 1"
p = ptr_new(10)
a = 10
ref_par_called,++(REF_PAR_RET(a)),++(REF_PAR_RET(*p)),11
if a NE 537 OR *p NE 537 then print,"REF_PAR: error 2"
p = ptr_new(10)
a = 10
ref_par_called,(REF_PAR_RET(a))++,(REF_PAR_RET(*p))++,10
if a NE 11 OR *p NE 11 then print,"REF_PAR: error 3"
end
function ret99
return,99b
end
function ret,a
return,a
end
function retEq,a
return,(a=3)
end
function retTag,a
return,(a.t=3)
end
function ret2,b
return,ret(b)
end
function ret3,b
return,ret2(b)
end
function retOverwriteLocal
a=[['m','a'],['r','c']]
return,reform(a,4,/OVERWRITE)
end
function retOverwriteGlobal,a
return,reform(a,4,/OVERWRITE)
end
function retOverwriteExpression
a=[['m','a'],['r','c']]
return,reform(a[*],4,/OVERWRITE)
end
pro ret_test
ref_par_test
if ret99() ne 99.0 then begin
message, '***RET: ERROR1', /conti
exit, status=1
endif
if retEq(u) ne 3 then begin
message, '***RET: ERROR2', /conti
exit, status=1
endif
(retEq(u2)) = 4
if u2 ne 4 then begin
message, '***RET: ERROR4', /conti
exit, status=1
endif
(ret3(u3))=7
if u3 ne 7 then begin
message, '***RET: ERROR5', /conti
exit, status=1
endif
s={t:0}
if retTag(s) ne 3 then begin
message, '***RET: ERROR6', /conti
exit, status=1
endif
;(ret(s))=2
n = retOverwriteLocal()
if n[2] ne "r" then begin
message, '***RET: ERROR7', /conti
exit, status=1
endif
a=[[1,2],[3,4]]
(retOverwriteGlobal(a))--
if a[1] ne 1 then begin
message, '***RET: ERROR8', /conti
exit, status=1
endif
n = retOverwriteExpression()
if n[2] ne "r" then begin
message, '***RET: ERROR9', /conti
exit, status=1
endif
a=1
c=ret(4*(3+reform(a,1,/OVERWRITE)+1)*2)
if a ne 1 then begin
message, '***RET: ERROR10', /conti
exit, status=1
endif
if c ne 40 then begin
message, '***RET: ERROR11', /conti
exit, status=1
endif
common ret_common,aa
aa=1
c=ret(4*(3+reform(aa,1,/OVERWRITE)+1)*2)
if aa ne 1 then begin
message, '***RET: ERROR12', /conti
exit, status=1
endif
if c ne 40 then begin
message, '***RET: ERROR13', /conti
exit, status=1
endif
print,'RET: OK';
end
pro struct_test
s={s:"a string",tag: indgen(5),c:complex(1,2)}
if s.tag[ 3] ne 3 then begin
message, '***STRUCT: ERROR1', /conti
exit, status=1
endif
s={s1,tag: indgen(5),s:s}
if s.tag[ 3] ne 3 then begin
message, '***STRUCT: ERROR1b', /conti
exit, status=1
endif
s.tag++
if s.tag[ 3] ne 4 then begin
message, '***STRUCT: ERROR2', /conti
exit, status=1
endif
s.tag = 9
if s.tag[ 3] ne 9 then begin
message, '***STRUCT: ERROR3', /conti
exit, status=1
endif
s.tag = [10,11,12]
if s.tag[ 2] ne 12 then begin
message, '***STRUCT: ERROR4', /conti
exit, status=1
endif
ss=[s,s]
ss[*].tag=indgen(5,2)
if ss[1].tag[2] ne 7 then begin
message, '***STRUCT: ERROR5', /conti
exit, status=1
endif
s={s:indgen(5),$
t:"string",$
u:complexarr(3,5),$
v:dcomplexarr(99,2),$
x:sindgen(100)$
}
ss={ss:s,s2:s}
sss={sss:ss,ss:[s,s]}
sa = s
for i=0,2 do begin
sa={s1:sa,s2:[sa,sa]}
endfor
sa = {named,t:s}
for i=0,3 do begin
sa={s1:sa,s2:[sa,sa]}
endfor
sa=0
;p=ptr_new( sss)
;((*p).sss.ss)[2] = 5
;print,((*p).ss)[2]
sss.sss.ss.s[2] = 10
if sss.sss.ss.s[2] ne 10 then begin
message, '***STRUCT: ERROR6', /conti
exit, status=1
endif
(ret(sss)).sss.ss.s[1] = 11
if sss.sss.ss.s[1] ne 11 then begin
message, '***STRUCT: ERROR7', /conti
exit, status=1
endif
if (ret(sss)).sss.ss.s[3] ne 3 then begin
message, '***STRUCT: ERROR8', /conti
exit, status=1
endif
(ret(sss)).sss.(0).s[1] = 11
if sss.(0).ss.s[1] ne 11 then begin
message, '***STRUCT: ERROR9', /conti
exit, status=1
endif
if ({a:3}).a ne 3 then begin
print, '***STRUCT: ERROR10', /conti
exit, status=1
endif
;; array and struct
s4=[sss,sss]
s5=[[s4],[s4]]
if s5[1,1].sss.ss.s[3] ne 3 then begin
print, '***STRUCT: ERROR11', /conti
exit, status=1
endif
a = {a0, var1: 0, var2: 0.0d0}
b = {a0, '0L', ' 1.0'}
; bug tracker ID: 3612104
a=ptrarr(1)
a[0]=ptr_new('a')
s={a:a}
ss={sst:s}
if *s.a[0] ne 'a' then begin
message, '***STRUCT: ERROR12', /conti
exit, status=1
endif
if *(ss.sst).a[0] ne 'a' then begin
message, '***STRUCT: ERROR13', /conti
exit, status=1
endif
print,'STRUCT: OK'
end
pro multi,a,b,c
b=9
if a ne 9 then begin
message, '***MULTI: ERROR1', /conti
exit, status=1
endif
if c ne 9 then begin
message, '***MULTI: ERROR2', /conti
exit, status=1
endif
end
pro multi_test
multi,a,a,a
if a ne 9 then begin
message, '***MULTI: ERROR3', /conti
exit, status=1
endif
print,'MULTI: OK'
end
function o::init
self.a=9
return,1
end
function o::get
return,self.a
end
pro o::test
self.a=1
if self.a ne 1 then begin
message, '***OBJECT: ERROR1', /conti
exit, status=1
endif
self[0].a=2
if self[0].a ne 2 then begin
message, '***OBJECT: ERROR2', /conti
exit, status=1
endif
(self).a[0]=3
if (self[0]).a[[-2]] ne 3 then begin
message, '***OBJECT: ERROR3', /conti
exit, status=1
endif
if self[[0]].a ne 3 then begin
message, '***OBJECT: ERROR4', /conti
exit, status=1
endif
;; would be legal in GDL (but IDL complains)
;if (self[[0]]).a ne 3 then begin
; message, '***OBJECT: ERROR5', /conti
; exit, status=1
;endif
end
pro o::cleanup
common object_test,o_cleanup
o_cleanup=-1
end
pro object_test
common object_test
;; object
s={o,a:0}
obj=obj_new('o')
if obj->get() ne 9 then begin
message, '***OBJECT: ERROR6', /conti
exit, status=1
endif
obj->test
(obj)->test
obj[0]->test
(obj[0])->test
if not obj_valid( obj) then begin
message, '***OBJECT: ERROR7', /conti
exit, status=1
endif
obj_destroy,obj
if obj_valid( obj) then begin
message, '***OBJECT: ERROR8', /conti
exit, status=1
endif
if o_cleanup ne -1 then begin
message, '***OBJECT: ERROR9', /conti
exit, status=1
endif
print,'OBJECT: OK'
end
pro ct1
common tc,x,y,z
if x ne 3 then begin
message, '***COMMON: ERROR1', /conti
exit, status=1
endif
y=7
end
pro ct2
common tc
if x ne 3 then begin
message, '***COMMON: ERROR2', /conti
exit, status=1
endif
if y ne 7 then begin
message, '***COMMON: ERROR3', /conti
exit, status=1
endif
z=9
end
function ct3
common tc3,a
return,a
end
pro common_test
common tc,a,b,c
common tc,d,e,f
common tc
a=3
ct1
ct2
if a ne 3 then begin
message, '***COMMON: ERROR4', /conti
exit, status=1
endif
if b ne 7 then begin
message, '***COMMON: ERROR5', /conti
exit, status=1
endif
if c ne 9 then begin
message, '***COMMON: ERROR6', /conti
exit, status=1
endif
if d ne 3 then begin
message, '***COMMON: ERROR7', /conti
exit, status=1
endif
if e ne 7 then begin
message, '***COMMON: ERROR8', /conti
exit, status=1
endif
if f ne 9 then begin
message, '***COMMON: ERROR9', /conti
exit, status=1
endif
if x ne 3 then begin
message, '***COMMON: ERROR10', /conti
exit, status=1
endif
if y ne 7 then begin
message, '***COMMON: ERROR11', /conti
exit, status=1
endif
if z ne 9 then begin
message, '***COMMON: ERROR12', /conti
exit, status=1
endif
(ct3()) = 2
if ct3() ne 2 then begin
message, '***COMMON: ERROR13', /conti
exit, status=1
endif
print,'COMMON: OK'
end
pro set22,a,X=x
a=2
x=2
end
pro ref_test,MEMCHECK=mCheck
set22,b
if b ne 2 then begin
message, "***REF: ERROR1", /conti
exit, status=1
endif
if not keyword_set( mCheck) then begin
p=ptr_new(/alloc)
set22,*p
if *p ne 2 then begin
message, "***REF: ERROR2", /conti
exit, status=1
endif
ptr_free,p
p=ptr_new(/alloc)
pp=ptr_new(p)
set22,**pp
if **pp ne 2 then begin
message, "***REF: ERROR3", /conti
exit, status=1
endif
ptr_free,p,pp
endif
a=indgen(3)
set22,reform(a,1,3,/OVERWRITE)
if a ne 2 then begin
message, "***REF: ERROR4", /conti
exit, statis=1
endif
a=4 & x=4
set22,a++,X=x++
if a ne 5 or x ne 5 then begin
message, "***REF: ERROR5", /conti
exit, status=1
endif
a=1 & x=1
set22,++a,X=++x
if a ne 2 or x ne 2 then begin
message, "***REF: ERROR6", /conti
exit, status=1
endif
a=1 & x=1
set22,(a=4),X=(x=4)
if a ne 2 or x ne 2 then begin
message, "***REF: ERROR7", /conti
exit, status=1
endif
a=4 & x=4
set22,++(a=1),X=++(x=1)
if a ne 2 or x ne 2 then begin
message, "***REF: ERROR8", /conti
exit, status=1
endif
set22,++(a[0]=4),X=++(x[0]=4)
if a ne 5 or x ne 5 then begin
message, "***REF: ERROR9", /conti
exit, status=1
endif
print,'REF: OK'
end
function base::init
common inheritance,baseInit,baseCleanup,derivInit,derivCleanup
baseInit=1
return,1
end
pro base::cleanup
common inheritance,baseInit,baseCleanup,derivInit,derivCleanup
baseCleanup=1
end
pro base::set
self.b='base'
end
pro base::setbase
self.b='base'
end
function base::get
return,self.b
end
function deriv::init
common inheritance,baseInit,baseCleanup,derivInit,derivCleanup
r=self->base::init()
derivInit=1
return,1
end
pro deriv::cleanup
common inheritance,baseInit,baseCleanup,derivInit,derivCleanup
self->base::cleanup
derivCleanup=1
end
pro deriv::set
self.b='deriv'
end
pro inheritance_test
base={ base, b: ''}
deriv={ deriv, INHERITS base, d: ''}
common inheritance
o=obj_new( 'deriv')
if baseInit ne 1 then begin
message, '***INHERITANCE: ERROR1', /conti
exit, status=1
endif
if derivInit ne 1 then begin
message, '***INHERITANCE: ERROR2', /conti
exit, status=1
endif
o->setbase
if o->get() ne 'base' then begin
message, '***INHERITANCE: ERROR3', /conti
exit, status=1
endif
o->set
if o->get() ne 'deriv' then begin
message, '***INHERITANCE: ERROR4', /conti
exit, status=1
endif
o->base::set
if o->get() ne 'base' then begin
message, '***INHERITANCE: ERROR5', /conti
exit, status=1
endif
obj_destroy, o
if baseInit ne 1 then begin
message, '***INHERITANCE: ERROR6', /conti
exit, status=1
endif
if derivInit ne 1 then begin
message, '***INHERITANCE: ERROR7', /conti
exit, status=1
endif
print,'INHERITANCE: OK'
end
function syntax_test,a,b,c
return,byte(a,b,c)
end
pro syntax_test
s={a:0}
t=s[0].a
t=s[[0]].a
t=(s[0]).a
t=(s[[0]]).a
b=(a=2)
if b ne 2 then begin
message, '***SYNTAX_TEST: ERROR1', /conti
exit, status=1
endif
a=(byte(1,0,1))[0]
a=(syntax_test(1,0,1))[0]
;((a=4)) syntax error
;(a=2)=3 forbidden in GDL (as it hardly makes sense)
end
pro inc_test
a=1
(ret(a))++
++(ret(a))
if a ne 3 then begin
message, "***INC: ERROR1", /conti
exit, status=1
endif
b = intarr(3)
b[1]++
++b[1]
(b[1])++
++(b[1])
if b[1] ne 4 then begin
message, "***INC: ERROR2", /conti
exit, status=1
endif
b[[1,2]]+=1
if b[1] ne 5 then begin
message, "***INC: ERROR3", /conti
exit, status=1
endif
(a=2)++
if a ne 3 then begin
message, '***INC_TEST: ERROR4', /conti
exit, status=1
endif
((a=2))++
if a ne 3 then begin
message, '***INC_TEST: ERROR5', /conti
exit, status=1
endif
++(a=2)
if a ne 3 then begin
message, '***INC_TEST: ERROR6', /conti
exit, status=1
endif
++((a=2))
if a ne 3 then begin
message, '***INC_TEST: ERROR7', /conti
exit, status=1
endif
print,'INC: OK'
end
pro continuebreak_test
repeat begin
goto,start
message, '***CONTINUE/BREAK: ERROR2', /conti
exit, status=1
start:
for i=0,40,2 do begin
if i lt 6 then continue
if i lt 6 then begin
message, '***CONTINUE/BREAK: ERROR1', /conti
exit, status=1
endif
if i gt 10 then break
if i gt 10 then begin
message, '***CONTINUE/BREAK: ERROR2', /conti
exit, status=1
endif
goto,in1
message, '***CONTINUE/BREAK: ERROR2', /conti
exit, status=1
goto,out1
in1:
endfor
goto,out2
out1:
out2:
endrep until 1
print,'CONTINUE/BREAK: OK'
end
pro e2,A=a,B=b
if a ne 'a' then begin
message, 'EXTRA: ERROR1', /conti
exit, status=1
endif
if b ne 'b' then begin
message, 'EXTRA: ERROR2', /conti
exit, status=1
endif
end
pro eref,_REF_EXTRA=ex
;; at this point, ex shoudl contain all passed variale names, even !NULL or undefined, as it is a _REF_EXTRA
if (n_elements(ex) ne 4 ) then message, 'EREF: ERROR', /conti
e2,_EXTRA=ex ;; here only the defined values will be passed in the _EXTRA structure.
end
pro eval,_EXTRA=ex
e2,_EXTRA=ex
end
pro e1,R2=a,R1=b
a=1
b=2
end
pro eret,_REF_EXTRA=ex
e1,_EXTRA=ex
end
pro extra_test,_REF_EXTRA=ex
eval,b='b',a='a',c=u ;;
;; pass to eref 2 defined values, 1 !NULL and 1 undefined. eref's _ref_extra should contain 4 values (a,b,c,z)
d=!NULL
eref,b='b',a='a',c=d,z=z ;; GD: a !NULL value IS passed to _REF_EXTRA but IGNORED in _EXTRA
eret,r1=r1,r2=r2
if r1 ne 2 then begin
message, '***EXTRA: ERROR3', /conti
exit, status=1
endif
if r2 ne 1 then begin
message, '***EXTRA: ERROR4', /conti
exit, status=1
endif
print,'EXTRA: OK'
end
pro expr_test
; BUG tracker ID: 3579499
str_template={value:1.0}
str_array=replicate(str_template,10)
str={data:str_array}
tmp=cos(str_template.value)
tmp=cos(str_array[0].value)
tmp=cos(str.data[0].value)
a=0
a++
a *= 2
a ^= 2
b = a+2*3-(9*2)+9
if b ne 1 then begin
message, '***EXPR: ERROR1', /conti
exit, status=1
endif
a=indgen(6,6,6)
a[3,3,3]=-1
if a[3,3,3] ne -1 then begin
message, '***EXPR: ERROR2', /conti
exit, status=1
endif
a=a+100
if a[3,3,3] ne 99 then begin
message, '***EXPR: ERROR2a', /conti
exit, status=1
endif
a[*]=a[*]-100
if a[3,3,3] ne -1 then begin
message, '***EXPR: ERROR2b', /conti
exit, status=1
endif
sdef={s,a:intarr(3),s:strarr(3)}
s1={s,indgen(3),s:sindgen(3)}
if s1.a[1] ne 1 then begin
message, '***EXPR: ERROR3', /conti
exit, status=1
endif
s2={s}
sArr=[s2,s2]
sArr[1].s[1]='test'
if sArr[1].s[1] ne 'test' then begin
message, '***EXPR: ERROR4', /conti
exit, status=1
endif
a=1
c=4*(3+reform(a,1,/OVERWRITE)+1)*2
if c ne 40 then begin
message, '***EXPR: ERROR5', /conti
exit, status=1
endif
if a ne 1 then begin
message, '***EXPR: ERROR6', /conti
exit, status=1
endif
if ~1 and ~2 && ~3 and 4 || ~ 5 ne 0 then begin
message, '***EXPR: ERROR7', /conti
exit, status=1
endif
print,'EXPR: OK'
end
function fac,n
if n le 1 then return,1
return,fac(n-1)*n
end
pro recursion_test
if fac( 5) ne 120 then begin
message, "***RECURSION: ERROR", /conti
exit, status=1
endif
print,'RECURSION: OK'
end
pro index_test
x=[1,2,3]
l=3
y=x[0:l-1]
if y[2] ne 3 then begin
message, "***INDEX: ERROR0", /conti
exit, status=1
endif
b=byte( "abcdefg")
d=bytarr(20)
d[10]=b
if string( d[10:16]) ne "abcdefg" then begin
message, "***INDEX: ERROR1", /conti
exit, status=1
endif
i=indgen(3,3)
s=[[-1],[-2]]
i[1,1]=s
if i[1,2] ne -2 then begin
message, "***INDEX: ERROR2", /conti
exit, status=1
endif
c=intarr(3)
(((c[1])))=1
if c[1] ne 1 then begin
message, '***INDEX: ERROR3', /conti
exit, status=1
endif
print,'ARRAY INDEXING: OK'
end
pro operator_test
a=indgen(4)
b=indgen(4)
c=a#b
if c[2,3] ne 6 then begin
message, "***OPERATOR: ERROR1", /conti
exit, status=1
endif
b=indgen(4,2)
c=a#b
if c[0,1] ne 38 then begin
message, "***OPERATOR: ERROR2", /conti
exit, status=1
endif
a=indgen(2,4)
b=indgen(4)
c=a#b
if c[1] ne 34 then begin
message, "***OPERATOR: ERROR3", /conti
exit, status=1
endif
b=indgen(4,2)
c=a#b
if c[0,1] ne 76 then begin
message, "***OPERATOR: ERROR4", /conti
exit, status=1
endif
x=indgen(10) # transpose(intarr(10)+1)
if x[9,9] ne 9 then begin
message, "***OPERATOR: ERROR5", /conti
exit, status=1
endif
;; with scalar
r= 4 # indgen(1,4)
if r[0,2] ne 8 then begin
message, "***OPERATOR: ERROR6", /conti
exit, status=1
endif
r= indgen(4) # 4
if r[1] ne 4 then begin
message, "***OPERATOR: ERROR7", /conti
exit, status=1
endif
if ~(!NULL eq !NULL) then begin
message, "***OPERATOR: ERROR8", /conti
exit, status=1
endif
if ~(un_def eq !NULL) then begin
message, "***OPERATOR: ERROR9", /conti
exit, status=1
endif
if ~(!NULL eq un_def) then begin
message, "***OPERATOR: ERROR10", /conti
exit, status=1
endif
if !NULL ne !NULL then begin
message, "***OPERATOR: ERROR8", /conti
exit, status=1
endif
if un_def ne !NULL then begin
message, "***OPERATOR: ERROR9", /conti
exit, status=1
endif
if !NULL ne un_def then begin
message, "***OPERATOR: ERROR10", /conti
exit, status=1
endif
print,'OPERATORS: OK'
end
pro assignment_test
c = indgen( 4, 4)
t = intarr( 5, 5)
t[0,0] = c
if t[3,3] ne 15 then begin
message, "***ASSIGNMENT: ERROR1", /conti
exit, status=1
endif
t = intarr( 5, 5)
t[0,1] = c
if t[3,3] ne 11 then begin
message, "***ASSIGNMENT: ERROR2", /conti
exit, status=1
endif
t = intarr( 5, 5)
t[1,0] = c
if t[3,3] ne 14 then begin
message, "***ASSIGNMENT: ERROR3", /conti
exit, status=1
endif
t = intarr( 5, 5)
t[1,1] = c
if t[3,3] ne 10 then begin
message, "***ASSIGNMENT: ERROR4", /conti
exit, status=1
endif
t = intarr( 5, 5)
a=indgen(3,3)
t[1,1]=a
if t[2,2] ne 4 then begin
message, "***ASSIGNMENT: ERROR5", /conti
exit, status=1
endif
t = intarr( 5, 5)
a=indgen(3,3)
t[1]=a
if t[3,0] ne 2 then begin
message, "***ASSIGNMENT: ERROR6", /conti
exit, status=1
endif
a=(1?0:9)
b=0
(1?a:b) = 2
if a ne 2 then begin
message, "***ASSIGNMENT: ERROR7", /conti
exit, status=1
endif
((a=3))=2
if a ne 2 then begin
message, "***ASSIGNMENT: ERROR8", /conti
exit, status=1
endif
A=create_struct("boo",dblarr(10),"foo",dblarr(10))
B=replicate(A,30)
data=findgen(30)
B[0:29].boo[3] = data[0:29]
if B[29].boo[3] ne 29.0 then begin
message, "***ASSIGNMENT: ERROR9", /conti
exit, status=1
endif
print,"ASSIGNMENT: OK"
end
pro left_libfunction_test
u=indgen(4)
(reform(u,4,/OVERWRITE))++
if u[2] ne 3 then begin
message, "***LEFT_LIBFUNCTION: ERROR1", /conti
exit, status=1
endif
print,"LEFT_LIBFUNCTION: OK"
end
pro stride_index_test
a=lindgen( 11, 20, 31)
;print,total( a[1:*:3])
if total( a[1:10:4, 2:16:2, 5:29:5]) ne 408480. then begin
message, "***STRIDE_INDEX: ERROR 1", /conti
exit, status=1
endif
if total( a[*, 2:14:2, 20:29:5]) ne 776622. then begin
message, "***STRIDE_INDEX: ERROR 2", /conti
exit, status=1
endif
if total( a[1:6:2, *, 17:29:5]) ne 890550. then begin
message, "***STRIDE_INDEX: ERROR 3", /conti
exit, status=1
endif
if total( a[[7,1], 2:16:2, 5:29:5]) ne 272240. then begin
message, "***STRIDE_INDEX: ERROR 4", /conti
exit, status=1
endif
if total( a[3:9:2, [7,1], 2:*:4]) ne 228480. then begin
message, "***STRIDE_INDEX: ERROR ", /conti
exit, status=1
endif
if total( a[*, 5:*:5, [7,1]]) ne 65670. then begin
message, "***STRIDE_INDEX: ERROR 5", /conti
exit, status=1
endif
if total( a[5:7, 2:16:2, 5:29:5]) ne 408600. then begin
message, "***STRIDE_INDEX: ERROR 6", /conti
exit, status=1
endif
if total( a[3:9:2, 5:7, 2:*:4]) ne 344832. then begin
message, "***STRIDE_INDEX: ERROR 7", /conti
exit, status=1
endif
if total( a[*, 5:*:5, 5:7]) ne 142065. then begin
message, "***STRIDE_INDEX: ERROR 8", /conti
exit, status=1
endif
b=lindgen(50)
if total( b[1:32:7]) ne 75. then begin
message, "***STRIDE_INDEX: ERROR 9", /conti
exit, status=1
endif
if total( b[1:*:3]) ne 425. then begin
message, "***STRIDE_INDEX: ERROR 10", /conti
exit, status=1
endif
print,"STRIDE_INDEX: OK"
end
; 'TEST_SUITE main program called.'
;
;; set MEMCHECK to perform a memory leak check
;; as the heap (number of allocated cells) always grows so does
;; the memory consumption
;; with MEMCHECK set, no ptr and object allocations are made
pro TEST_SUITE, MEMCHECK=mCheck
s=systime(1)
if_test
switch_test
case_test
while_test
for_test
repeat_test
goto_test
ret_test
struct_test
multi_test
if not keyword_set( mCheck) then object_test
common_test
ref_test,MEMCHECK=mCheck
syntax_test
inc_test
if not keyword_set( mCheck) then inheritance_test
continuebreak_test
extra_test
expr_test
recursion_test
index_test
operator_test
assignment_test
left_libfunction_test
stride_index_test
print,"TEST_SUITE finished. Time: ",systime(1)-s
end
|