Skip to content

Commit

Permalink
config skip vkfft test for 20.04
Browse files Browse the repository at this point in the history
  • Loading branch information
anarkiwi committed Feb 16, 2024
1 parent abc81d9 commit c37dee6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ jobs:
fetch-depth: 0
- name: build_test
run: |
sudo apt-get -y update && sudo add-apt-repository ppa:gnuradio/gnuradio-releases && bin/apt_get.sh && bin/install-volk.sh v3.1.0 && bin/build_test.sh && bin/test_grc310.sh
sudo apt-get -y update && sudo add-apt-repository ppa:gnuradio/gnuradio-releases && bin/apt_get.sh && bin/install-volk.sh v3.1.0 && TEST_VKFFT=0 bin/build_test.sh && bin/test_grc310.sh
10 changes: 5 additions & 5 deletions python/iqtlabs/qa_vkfft.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,9 @@ def run_comparison(self, vkfft_block, short):
)
)

if os.getenv("TEST_VKFFT", 0):
self.assertEqual(
self.round_complex(vkfft_data), self.round_complex(sw_data)
)
self.assertEqual(
self.round_complex(vkfft_data), self.round_complex(sw_data)
)

def test_vkfft(self):
self.run_comparison(iqtlabs.vkfft, False)
Expand All @@ -282,4 +281,5 @@ def test_short_vkfft(self):


if __name__ == "__main__":
gr_unittest.run(qa_vkfft)
if os.getenv("TEST_VKFFT", 0):
gr_unittest.run(qa_vkfft)

0 comments on commit c37dee6

Please sign in to comment.