mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
569c7d84b0
PiperOrigin-RevId: 335017461 Change-Id: I583444057bb4d8c8c33694fbba4d3717bb22101a
43 lines
1.4 KiB
CMake
43 lines
1.4 KiB
CMake
# Copyright 2020 Google LLC
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http:#www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
include(GoogleTest)
|
|
|
|
# We need to prepare convenient directories so the tests will be able to access them
|
|
file(MAKE_DIRECTORY ${PROJECT_BINARY_DIR}/tests/tests_input)
|
|
file(MAKE_DIRECTORY ${PROJECT_BINARY_DIR}/tests/tests_output)
|
|
file(MAKE_DIRECTORY ${PROJECT_BINARY_DIR}/tests/tests_expected_output)
|
|
|
|
add_custom_target(test_preparation ALL
|
|
COMMAND cp ${PROJECT_SOURCE_DIR}/examples/jsonnet_codes/* ${PROJECT_BINARY_DIR}/tests/tests_input
|
|
COMMAND cp ${PROJECT_SOURCE_DIR}/examples/jsonnet_codes_expected_output/* ${PROJECT_BINARY_DIR}/tests/tests_expected_output
|
|
)
|
|
|
|
add_executable(tests
|
|
${PROJECT_SOURCE_DIR}/headers/jsonnet_tests.h
|
|
jsonnet_tests.cc
|
|
jsonnet_tests_utils.cc
|
|
)
|
|
|
|
target_include_directories(tests PUBLIC
|
|
${PROJECT_SOURCE_DIR}/headers
|
|
)
|
|
|
|
target_link_libraries(tests
|
|
jsonnet_sapi sapi::sapi
|
|
gtest gmock gtest_main
|
|
)
|
|
|
|
gtest_discover_tests(tests)
|