da474357f3
* Some var cleanup so it shows better-organized in cmake-gui. Some vars were also not following the namign convention we are using Removed some unnecessary messaging Fixed a TIF bug where it would report the wrong test in a message, fixed a message that was being triggered Changed TIF to be enabled just by the binary so running the ci_build scripts locally doesnt trigger TIF messaging Removed `LY_ENABLE_MULTIPLAYER_COMPRESSION`, it was not being used Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> * handling case where a parameter can be empty Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> * needs to be var name, not contents Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
48 lines
1.4 KiB
CMake
48 lines
1.4 KiB
CMake
#
|
|
# Copyright (c) Contributors to the Open 3D Engine Project.
|
|
# For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
#
|
|
#
|
|
|
|
# Currently a sanity test is being registered here to validate that the ly_add_pytest function works
|
|
# don't change the names of the tests, they are used in a self test.
|
|
|
|
if(NOT PAL_TRAIT_BUILD_TESTS_SUPPORTED)
|
|
return()
|
|
endif()
|
|
|
|
################################################################################
|
|
# Tests
|
|
################################################################################
|
|
|
|
if(PAL_TRAIT_TEST_LYTESTTOOLS_SUPPORTED)
|
|
foreach(suite_name ${LY_TEST_GLOBAL_KNOWN_SUITE_NAMES})
|
|
ly_add_pytest(
|
|
NAME pytest_sanity_${suite_name}_no_gpu
|
|
PATH ${CMAKE_CURRENT_LIST_DIR}/sanity_test.py
|
|
TEST_SUITE ${suite_name}
|
|
)
|
|
|
|
ly_add_pytest(
|
|
NAME pytest_sanity_${suite_name}_requires_gpu
|
|
PATH ${CMAKE_CURRENT_LIST_DIR}/sanity_test.py
|
|
TEST_SUITE ${suite_name}
|
|
TEST_REQUIRES gpu
|
|
)
|
|
endforeach()
|
|
endif()
|
|
|
|
# add a custom test which makes sure that the test filtering works!
|
|
|
|
ly_add_test(
|
|
NAME cli_test_driver
|
|
EXCLUDE_TEST_RUN_TARGET_FROM_IDE
|
|
TEST_COMMAND ${LY_PYTHON_CMD} ${CMAKE_CURRENT_LIST_DIR}/ctest_driver_test.py
|
|
-x ${CMAKE_CTEST_COMMAND}
|
|
--build-path ${CMAKE_BINARY_DIR}
|
|
TEST_LIBRARY pytest
|
|
)
|
|
|