summaryrefslogtreecommitdiff
path: root/gr-atsc
diff options
context:
space:
mode:
authorPhilip Balister <philip@balister.org>2013-12-05 13:18:03 -0500
committerTom Rondeau <tom@trondeau.com>2013-12-05 14:30:54 -0500
commitab02bc9bb15614ad6b199300a86ea98b386e838e (patch)
tree3476d725ca3991bd6717a93fd51e86176189ac68 /gr-atsc
parent51d693bc3487c7e0a17f30f7a364e8799e99e78e (diff)
Add a QA_PYTHON_EXECUTABLE variable so QA code knows what python to use when cross compiling.
With this (and the prior) patch, you can mount the compile directory on the target and run the QA code (as long as the paths are the same). The qtgui tests fail if there is no X server. Volk seems to fail for hard float builds. We'll need to look at adding thes changes to gr_modtool. Signed-off-by: Philip Balister <philip@balister.org>
Diffstat (limited to 'gr-atsc')
-rw-r--r--gr-atsc/python/atsc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-atsc/python/atsc/CMakeLists.txt b/gr-atsc/python/atsc/CMakeLists.txt
index ab19b13e2d..a26df35424 100644
--- a/gr-atsc/python/atsc/CMakeLists.txt
+++ b/gr-atsc/python/atsc/CMakeLists.txt
@@ -58,6 +58,6 @@ if(ENABLE_TESTING)
file(GLOB py_qa_test_files "qa_*.py")
foreach(py_qa_test_file ${py_qa_test_files})
get_filename_component(py_qa_test_name ${py_qa_test_file} NAME_WE)
- GR_ADD_TEST(${py_qa_test_name} ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${py_qa_test_file})
+ GR_ADD_TEST(${py_qa_test_name} ${QA_PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${py_qa_test_file})
endforeach(py_qa_test_file)
endif(ENABLE_TESTING)