diff options
author | daniel <danieruru@gmail.com> | 2013-01-23 22:25:41 +0900 |
---|---|---|
committer | daniel <danieruru@gmail.com> | 2013-01-23 22:25:41 +0900 |
commit | 609cb1e17a9ab8edf1ccab42574b44bc1439aeb7 (patch) | |
tree | c4c41ab2ad0e922966e0af8d33a90bffd50ab224 /libvxi11client/perlbits/VXI11-Client.t | |
parent | 5d66712261026f3f2da0958d98d60fb2142feedd (diff) |
fix the handling of int getting passed back.. returning the address of the int is not what we want.
Diffstat (limited to 'libvxi11client/perlbits/VXI11-Client.t')
-rw-r--r-- | libvxi11client/perlbits/VXI11-Client.t | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libvxi11client/perlbits/VXI11-Client.t b/libvxi11client/perlbits/VXI11-Client.t index 7054d39..c4ffcac 100644 --- a/libvxi11client/perlbits/VXI11-Client.t +++ b/libvxi11client/perlbits/VXI11-Client.t @@ -18,7 +18,7 @@ BEGIN { use_ok('VXI11::Client') }; &VXI11::Client::vxi_startinterruptserver(); -my $instr = &VXI11::Client::vxi_open("192.168.0.62", 0); +my $instr = &VXI11::Client::vxi_open("roi", 0); is($instr->vxi_lock(0), 1, "Lock"); ok($instr->vxi_write("*IDN?", -1, 0, 0) > 0, "Write"); @@ -27,9 +27,8 @@ my ($bytes, $buff, $reason) = $instr->vxi_read(256, 0, 0, 0); print "got " . $bytes . ";" . $buff . "\n"; ok($bytes > 0, "Read"); - my ($error, $statusbyte) = $instr->vxi_readstatusbyte(0); -ok($error == 0 , "Read status byte"); +is($error,0, "Read status byte"); is($instr->vxi_create_intr_chan(), 1, "Create intr channel"); is($instr->vxi_enable_srq(1, "myhandle"), 1, "Enable interrupts"); |