blob: 1773d9fc9f0f58865bfdbf577ce29dfc0b434dfa [file] [log] [blame] [edit]
if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})
add_subdirectory(${LIBC_TARGET_OS})
endif()
add_custom_target(stdlib-integration-tests)
add_dependencies(libc-integration-tests stdlib-integration-tests)
add_integration_test(
getenv_test
SUITE
stdlib-integration-tests
SRCS
getenv_test.cpp
DEPENDS
libc.src.stdlib.getenv
ENV
FRANCE=Paris
GERMANY=Berlin
)