Update c-build-tools and macro-utils (#33)

* Update c-build-tools and macro-utils

* The ctest tests should actually run in the gate
This commit is contained in:
Matt Durak 2021-01-20 12:24:54 -08:00 коммит произвёл GitHub
Родитель 3e408fe096
Коммит c6a1aef8ad
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 14 добавлений и 14 удалений

Просмотреть файл

@ -109,19 +109,18 @@ jobs:
configuration: RelWithDebInfo
maximumCpuCount: true
- task: VSTest@2
displayName: 'VsTest - testAssemblies'
- task: CmdLine@1
displayName: 'Run ctest'
inputs:
testAssemblyVer2: |
**\*test*.dll
!**\obj\**
runTestsInIsolation: true
filename: ctest
arguments: '-C "RelWithDebInfo" -V --output-on-failure'
workingFolder: 'build_x64'
- job: windowsx86debug
displayName: 'Build Windows x86 Debug'
pool:
name: Azure-MessagingStore
demands:
demands:
- Cmd
- msbuild
- visualstudio

2
deps/c-build-tools поставляемый

@ -1 +1 @@
Subproject commit 693b39cc4a51a2eec56a6b6917b07761b3263665
Subproject commit 15f098f68ebaf406117dcc73d2f8ec29bb8f5f44

2
deps/macro-utils-c поставляемый

@ -1 +1 @@
Subproject commit 88db3e57170663ea25a18ddd872194c625e6ab79
Subproject commit 1e558f050bb6280072deddd64a865d2df67db52f

Просмотреть файл

@ -3,4 +3,4 @@
add_executable(logging_int main.c)
target_link_libraries(logging_int c_logging)
add_test(NAME logging_int COMMAND logging_int)

Просмотреть файл

@ -47,9 +47,9 @@ elseif(${use_etw_value} STREQUAL "TRACELOGGING_WITH_CONSOLE")
endif()
add_executable(${exeName}
${LOGGING_STACKTRACE_C_FILE}
${LOGGING_STACKTRACE_H_FILE}
add_executable(${exeName}
${LOGGING_STACKTRACE_C_FILE}
${LOGGING_STACKTRACE_H_FILE}
${XLOGGING_C_FILE}
${LOGGING_C_FILE}
${LOGGING_H_FILE}
@ -60,4 +60,5 @@ if(${logerror_captures_stack_traces_value})
target_link_libraries(${exeName} Dbghelp.lib)
endif()
set_target_properties(${exeName} PROPERTIES FOLDER "tests/c_logging_tests")
set_target_properties(${exeName} PROPERTIES FOLDER "tests/c_logging_tests")
add_test(NAME ${exeName} COMMAND ${exeName})