howto: reorganized directory structure
[debian/gnuradio] / gr-howto-write-a-block / 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@/lib
15 # Where to look in the build tree for swig generated python code
16 libsrc=@abs_top_builddir@/swig
17 # Where to look in the src tree for hand written python code
18 py=@abs_top_srcdir@/python
19
20 # Where to look for installed GNU Radio python modules
21 # FIXME this is wrong on a distcheck.  We really need to ask gnuradio-core
22 # where it put its python files.
23 installed_pythondir=@pythondir@
24 installed_pyexecdir=@pyexecdir@
25
26 PYTHONPATH="$libbld:$libbld/.libs:$libsrc:$libsrc/.libs:$py:$installed_pythondir:$installed_pyexecdir:$PYTHONPATH"
27
28 export PYTHONPATH
29
30 #
31 # This is the simple part...
32 # Run everything that matches qa_*.py and return the final result.
33 #
34
35 ok=yes
36 for file in @srcdir@/qa_*.py
37 do
38   if ! $file
39   then
40     ok=no
41   fi  
42 done
43
44 if [ $ok = yes ]
45 then
46   exit 0
47 else
48   exit 1
49 fi