Skip to content

Commit e9c4ccf

Browse files
committed
Fix issues
1 parent 44e09d7 commit e9c4ccf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmake/yup_embed_binary.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function (yup_add_embedded_binary_resources library_name)
7979
file (APPEND "${full_resource_unit_path}"
8080
"const uint8_t ${resource_name}_data[] = \n"
8181
"{\n"
82-
"#include \"${resource_name}.inc\"\n"
82+
" #include \"${resource_name}.inc\"\n"
8383
"};\n"
8484
"\n"
8585
"const std::size_t ${resource_name}_size = sizeof (${resource_name}_data);\n"

cmake/yup_utilities.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function (_yup_file_to_byte_array file_path output_variable)
148148
file (READ "${file_path}" hex_contents HEX)
149149
string (REGEX MATCHALL "([A-Fa-f0-9][A-Fa-f0-9])" separated_hex ${hex_contents})
150150

151-
list (JOIN separated_hex ", 0x" formatted_hex)
151+
list (JOIN separated_hex ",0x" formatted_hex)
152152
string (PREPEND formatted_hex "0x")
153153
string (APPEND formatted_hex "")
154154

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ else()
7575
GTest::gmock_main)
7676
endif()
7777

78-
if (YUP_PLATFORM_MACOS OR YUP_PLATFORM_WINDOWS)
78+
if (YUP_PLATFORM_MAC OR YUP_PLATFORM_WINDOWS)
7979
set (python_tools_path "${CMAKE_CURRENT_LIST_DIR}/../python/tools")
8080
set (python_target_name "${target_name}_python_stdlib")
8181

tests/yup_python/yup_ScriptPython.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ TEST_F (ScriptPythonTest, RunPythonTests)
112112
runpy.run_module('pip', run_name='__main__')
113113
import pytest
114114
115-
pytest.main(['-x', '{{test_path}}'])
115+
pytest.main(['-x', '{{test_path}}', '-vvv'])
116116
)");
117117

118118
script = script

0 commit comments

Comments
 (0)