From ee9fe4fa6339dc1e49a4d484f9f03d4091c6aa90 Mon Sep 17 00:00:00 2001 From: daniel Date: Fri, 11 Jan 2013 19:13:47 +0900 Subject: most of it seems to work in perl now --- libvxi11client/perlbits/Makefile.PL | 2 +- libvxi11client/perlbits/VXI11-Client.t | 28 +++++++++++++++------------- 2 files changed, 16 insertions(+), 14 deletions(-) (limited to 'libvxi11client/perlbits') diff --git a/libvxi11client/perlbits/Makefile.PL b/libvxi11client/perlbits/Makefile.PL index 9b7f0ff..055880e 100644 --- a/libvxi11client/perlbits/Makefile.PL +++ b/libvxi11client/perlbits/Makefile.PL @@ -9,7 +9,7 @@ WriteMakefile( ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/VXI11/Client.pm', # retrieve abstract from module AUTHOR => 'daniel ') : ()), - LIBS => ['-lgthread-2.0 -lrt -lglib-2.0'], # e.g., '-lm' + LIBS => ['-pthread -lgthread-2.0 -lrt -lglib-2.0'], # e.g., '-lm' DEFINE => '', # e.g., '-DHAVE_SOMETHING' INC => '-I. -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include', # e.g., '-I. -I/usr/include/other' OBJECT => '$(O_FILES)', # link all the C files too diff --git a/libvxi11client/perlbits/VXI11-Client.t b/libvxi11client/perlbits/VXI11-Client.t index 4d68c37..ac3d581 100644 --- a/libvxi11client/perlbits/VXI11-Client.t +++ b/libvxi11client/perlbits/VXI11-Client.t @@ -8,7 +8,7 @@ use strict; use warnings; -use Test::More tests => 12; +use Test::More tests => 16; BEGIN { use_ok('VXI11::Client') }; ######################### @@ -16,16 +16,18 @@ BEGIN { use_ok('VXI11::Client') }; # Insert your test code below, the Test::More module is use()ed here so read # its man page ( perldoc Test::More ) for help writing this test script. -is(&VXI11::Client::vopen("roi", 0), 1); -is(&VXI11::Client::vlock(0), 1); -is(&VXI11::Client::vwrite("*IDN?", 6, 0, 0), 6); +is(&VXI11::Client::vopen("roi", 0), 1, "Open"); +is(&VXI11::Client::vlock(0), 1, "Lock"); +is(&VXI11::Client::vwrite("*IDN?", 6, 0, 0), 6, "Write"); ok(&VXI11::Client::vreadstatusbyte(0) >= 0 , "Read status byte"); -# is(&VXI11::Client::vcreate_intr_chan(), 1); -# is(&VXI11::Client::vdestroy_intr_chan(), 1); -is(&VXI11::Client::vabort(), 1); -is(&VXI11::Client::vclear(0), 1); -is(&VXI11::Client::vtrigger(0), 1); -is(&VXI11::Client::vlocal(0), 1); -is(&VXI11::Client::vremote(0), 1); -is(&VXI11::Client::vunlock(), 1); -is(&VXI11::Client::vclose(), 1); +is(&VXI11::Client::vcreate_intr_chan(), 1, "Create intr channel"); +is(&VXI11::Client::venable_srq(1), 1, "Enable interrupts"); +is(&VXI11::Client::venable_srq(0), 1, "Disable interrupts"); +is(&VXI11::Client::vdestroy_intr_chan(), 1, "Destroy intr channel"); +is(&VXI11::Client::vabort(), 1, "Abort"); +is(&VXI11::Client::vclear(0), 1, "Clear"); +is(&VXI11::Client::vtrigger(0), 1, "Trigger"); +is(&VXI11::Client::vlocal(0), 1, "Local"); +is(&VXI11::Client::vremote(0), 1, "Remote"); +is(&VXI11::Client::vunlock(), 1, "Unlock"); +is(&VXI11::Client::vclose(), 1, "Close"); -- cgit