Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Fix Exclusion of tests on armhf and mips
· 87311b6a
Andreas Tille
authored
Jan 30, 2019
87311b6a
Upload to unstable
· 0293fe15
Andreas Tille
authored
Jan 30, 2019
0293fe15
Hide whitespace changes
Inline
Side-by-side
debian/changelog
View file @
0293fe15
seqan2 (2.4.0+dfsg-11) unstable; urgency=medium
* Fix Exclusion of tests on armhf and mips
-- Andreas Tille <tille@debian.org> Wed, 30 Jan 2019 14:21:53 +0100
seqan2 (2.4.0+dfsg-10) unstable; urgency=medium
[ Michael R. Crusoe ]
...
...
debian/rules
View file @
0293fe15
...
...
@@ -48,15 +48,15 @@ ifeq ($(DEB_HOST_ARCH),armhf)
# 46 - test_test_index_crosscompare_dna (Bus error)
# 52 - test_test_index_fm_rank_dictionary (Bus error)
sed -i \
-e '
g
/ test_test_index_crosscompare_dna /d' \
-e '
g
/ test_test_index_fm_rank_dictionary
/
/d' \
-e '/ test_test_index_crosscompare_dna /d' \
-e '/ test_test_index_fm_rank_dictionary /d' \
tests/index/CMakeLists.txt
endif
ifeq ($(DEB_HOST_ARCH),mips)
# The following tests FAILED:
# 7 - test_align_parallel_data_structures (Child aborted)
sed -i \
-e '
g
/ test_align_parallel_data_structures /d' \
-e '/ test_align_parallel_data_structures /d' \
tests/index/CMakeLists.txt
endif
export DEB_BUILD_ARCH=${DEB_BUILD_ARCH} ; \
...
...
tests/index/CMakeLists.txt
View file @
0293fe15
...
...
@@ -165,14 +165,12 @@ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${SEQAN_CXX_FLAGS}")
add_test
(
NAME test_test_index_creation COMMAND $<TARGET_FILE:test_index_creation>
)
add_test
(
NAME test_test_index_crosscompare_char COMMAND $<TARGET_FILE:test_index_crosscompare_char>
)
add_test
(
NAME test_test_index_crosscompare_char_dfi COMMAND $<TARGET_FILE:test_index_crosscompare_char_dfi>
)
add_test
(
NAME test_test_index_crosscompare_dna COMMAND $<TARGET_FILE:test_index_crosscompare_dna>
)
add_test
(
NAME test_test_index_crosscompare_dna_dfi COMMAND $<TARGET_FILE:test_index_crosscompare_dna_dfi>
)
add_test
(
NAME test_test_index_qgram COMMAND $<TARGET_FILE:test_index_qgram>
)
add_test
(
NAME test_test_index_sa_bwtwalk COMMAND $<TARGET_FILE:test_index_sa_bwtwalk>
)
add_test
(
NAME test_test_index_shapes COMMAND $<TARGET_FILE:test_index_shapes>
)
add_test
(
NAME test_test_index_drawing COMMAND $<TARGET_FILE:test_index_drawing>
)
#add_test (NAME test_test_index_fm_right_array_binary_tree COMMAND $<TARGET_FILE:test_index_fm_right_array_binary_tree>)
add_test
(
NAME test_test_index_fm_rank_dictionary COMMAND $<TARGET_FILE:test_index_fm_rank_dictionary>
)
add_test
(
NAME test_test_index_fm_sparse_string COMMAND $<TARGET_FILE:test_index_fm_sparse_string>
)
add_test
(
NAME test_test_index_base COMMAND $<TARGET_FILE:test_index_base>
)
add_test
(
NAME test_test_index_fm COMMAND $<TARGET_FILE:test_index_fm>
)
...
...