10 lines
149 B
Bash
10 lines
149 B
Bash
#!/bin/bash
|
|
#
|
|
# run script for Perl tests
|
|
#
|
|
# Usage: run <dir> <file>
|
|
#
|
|
(cd $1;
|
|
f=`dirname $0`;
|
|
LD_LIBRARY_PATH=$f/../../../build/src/lib perl $2)
|