From 3ba49adf6fe02750282440d700c84440c5a8c38e Mon Sep 17 00:00:00 2001
From: "A. Maitland Bottoms" <bottoms@debian.org>
Date: Fri, 14 Jan 2022 18:05:32 -0500
Subject: [PATCH 2/3] skip long tests

For building on Debian build machines.
---
 gr-fec/python/fec/CMakeLists.txt | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/gr-fec/python/fec/CMakeLists.txt b/gr-fec/python/fec/CMakeLists.txt
index caa1babdb..a2bb513cf 100644
--- a/gr-fec/python/fec/CMakeLists.txt
+++ b/gr-fec/python/fec/CMakeLists.txt
@@ -52,6 +52,17 @@ if(NOT GSL_FOUND)
     )
 endif(NOT GSL_FOUND)
 
+# These take too many resources on build machines
+list(REMOVE_ITEM py_qa_test_files
+  ${CMAKE_CURRENT_SOURCE_DIR}/qa_polar_decoder_sc_systematic.py
+  )
+list(REMOVE_ITEM py_qa_test_files
+  ${CMAKE_CURRENT_SOURCE_DIR}/qa_polar_decoder_systematic.py
+  )
+list(REMOVE_ITEM py_qa_test_files
+  ${CMAKE_CURRENT_SOURCE_DIR}/qa_polar_encoder_systematic.py
+  )
+
 foreach(py_qa_test_file ${py_qa_test_files})
     get_filename_component(py_qa_test_name ${py_qa_test_file} NAME_WE)
     if (CMAKE_CROSSCOMPILING)
-- 
2.30.2

