fixes for bugs in change#4586 and OS/2 pod tweak, from Ilya
[p5sagit/p5-mst-13.2.git] / os2 / OS2 / REXX / t / rx_objcall.t
CommitLineData
760ac839 1BEGIN {
2 chdir 't' if -d 't/lib';
3 @INC = '../lib' if -d 'lib';
4 require Config; import Config;
bbad3607 5 if (-d 'lib' and $Config{'extensions'} !~ /\bOS2(::|\/)REXX\b/) {
760ac839 6 print "1..0\n";
7 exit 0;
8 }
9}
10
11use OS2::REXX;
12
13#
14# DLL
15#
ed344e4f 16$ydba = load OS2::REXX "ydbautil"
17 or print "1..0 # skipped: cannot find YDBAUTIL.DLL\n" and exit;
760ac839 18print "1..5\n", "ok 1\n";
19
20#
21# function
22#
23@pid = $ydba->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 = $ydba->RxProcId();
28@res = split " ", $pid[0];
29print "ok 4\n" if $res[0] == $$;
30print "# @pid\n";
31
32eval { $ydba->nixda(); };
33print "ok 5\n" if $@ =~ /^Can't find entry 'nixda\'/;
34