Merged anastas/wip changes r3156:3218 into trunk.
[debian/gnuradio] / gr-trellis / src / python / run_tests.in
1 #!/bin/sh
2
3 # All this strange PYTHONPATH manipulation is required to run our
4 # tests using our just built shared library and swig-generated python
5 # code prior to installation.
6
7 # build tree == src tree unless you're doing a VPATH build.  
8 # If you don't know what a VPATH build is, you're not doing one.  Relax...
9
10 prefix=@prefix@
11 exec_prefix=@exec_prefix@
12
13 # Where to look in the build tree for our shared library
14 libbld=@abs_top_builddir@/gr-trellis/src/lib
15 # Where to look in the src tree for swig generated python code
16 libsrc=@abs_top_srcdir@/gr-trellis/src/lib
17 # Where to look in the src tree for hand written python code
18 py=@abs_top_srcdir@/gr-trellis/src/python
19
20 # Where to look for GNU Radio python modules in current build tree
21 grpythonbld=@abs_top_builddir@/gnuradio-core/src/python/:@abs_top_builddir@/gnuradio-core/src/lib/swig/:@abs_top_builddir@/gnuradio-core/src/lib/swig/.libs
22
23 PYTHONPATH="$grpythonbld:$libbld:$libbld/.libs:$libsrc:$py:$PYTHONPATH"
24 export PYTHONPATH
25
26 #
27 # This is the simple part...
28 # Run everything that matches qa_*.py and return the final result.
29 #
30
31 ok=yes
32 for file in @srcdir@/qa_*.py
33 do
34   if ! $file
35   then
36     ok=no
37   fi  
38 done
39
40 if [ $ok = yes ]
41 then
42   exit 0
43 else
44   exit 1
45 fi