1BEGIN { 2 chdir 't' if -d 't/lib'; 3 @INC = '../lib' if -d 'lib'; 4 require Config; import Config; 5 if (-d 'lib' and $Config{'extensions'} !~ /\bOS2(::|\/)REXX\b/) { 6 print "1..0\n"; 7 exit 0; 8 } 9} 10 11use OS2::REXX; 12 13# 14# DLL 15# 16$rxu = load OS2::REXX "rxu" 17 or print "1..0 # skipped: cannot find RXU.DLL\n" and exit; 18print "1..5\n", "ok 1\n"; 19 20# 21# function 22# 23@pid = $rxu->RxProcId(); 24@pid == 1 ? print "ok 2\n" : print "not ok 2\n"; 25@res = split " ", $pid[0]; 26print "ok 3\n" if $res[0] == $$; 27@pid = $rxu->RxProcId(); 28@res = split " ", $pid[0]; 29print "ok 4\n" if $res[0] == $$; 30print "# @pid\n"; 31 32eval { $rxu->nixda(); }; 33my $err = $@; 34if ($err) { 35 $err =~ s/\n/\n#\t/g; 36 print "# \$\@ = '$err'\n"; 37} 38print "ok 5\n" if $@ =~ /^Can't find symbol `nixda\'/; 39