Disable subset tests on cmake for now.

This commit is contained in:
Garret Rieger 2018-02-08 15:55:12 -08:00 committed by Behdad Esfahbod
parent e081c9e8fc
commit 3e81832432
1 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,9 @@ if (HB_BUILD_UTILS)
file (READ "${CMAKE_CURRENT_SOURCE_DIR}/data/Makefile.sources" SOURCES)
extract_make_variable (TESTS ${SOURCES})
foreach (test IN ITEMS ${TESTS})
add_test (NAME ${test}
COMMAND python run-tests.py $<TARGET_FILE:hb-subset> "data/${test}"
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
# TODO(grieger): Re-enable once ttx is available in CI environments.
# add_test (NAME ${test}
# COMMAND python run-tests.py $<TARGET_FILE:hb-subset> "data/${test}"
# WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
endforeach ()
endif ()