Split unit tests into separate directories (#1761)

The unit tests should follow the component structure, so this patch
moves all `jerry-core` unit tests under `tests/unit-core` and the
`jerry-libm` unit tests under `tests/unit-libm`.

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss
2017-04-22 03:57:45 +02:00
committed by yichoi
parent 66ade0d81c
commit 6ca8319aea
20 changed files with 60 additions and 15 deletions
+4 -1
View File
@@ -239,5 +239,8 @@ endif()
# Unittests
if(UNITTESTS)
add_subdirectory(tests/unit)
add_subdirectory(tests/unit-core)
if(JERRY_LIBM)
add_subdirectory(tests/unit-libm)
endif()
endif()