blob: 5f7bdc067aaf3d676fc6b9605e3e2d2412f8f668 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# 1st parameter is absolute path to component source directory
# 2nd parameter is absolute path to component build directory
# 3rd parameter is path to Python QA directory
# For OS/X
DYLD_LIBRARY_PATH=@abs_top_builddir@/gruel/src/lib/:@abs_top_builddir@/gruel/src/swig/.libs:$DYLD_LIBRARY_PATH
export DYLD_LIBRARY_PATH
# For Win32
PATH=@abs_top_builddir@/gruel/:@abs_top_builddir@/gruel/.libs:$PATH
@top_builddir@/run_tests.sh \
@abs_top_srcdir@/gruel \
@abs_top_builddir@/gruel \
@srcdir@
|