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