Remove zdotu test for ms c to work around travis error
This commit is contained in:
parent
31927f6674
commit
ab88156e94
|
@ -10,12 +10,19 @@ else ()
|
||||||
test_rotmg.c
|
test_rotmg.c
|
||||||
test_rot.c
|
test_rot.c
|
||||||
test_axpy.c
|
test_axpy.c
|
||||||
test_dotu.c
|
|
||||||
test_dsdot.c
|
test_dsdot.c
|
||||||
test_swap.c
|
test_swap.c
|
||||||
)
|
)
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
|
# crashing on travis cl with an error code suggesting resource not found
|
||||||
|
if (NOT MSVC)
|
||||||
|
set(OpenBLAS_utest_src
|
||||||
|
$(OpenBLAS_utest_src}
|
||||||
|
test_dotu.c
|
||||||
|
)
|
||||||
|
endif ()
|
||||||
|
|
||||||
# known to hang with the native Windows and Android threads
|
# known to hang with the native Windows and Android threads
|
||||||
# FIXME needs checking if this works on any of the other platforms
|
# FIXME needs checking if this works on any of the other platforms
|
||||||
if (NOT USE_OPENMP)
|
if (NOT USE_OPENMP)
|
||||||
|
|
Loading…
Reference in New Issue