diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-13 13:47:30 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 00:18:49 +0300 |
commit | 418e850b2b1f76b204af87a5d930f5129055e09a (patch) | |
tree | 470f40f91b500ca1de712689d171433d9dd4d0d5 /.appveyor.yml | |
parent | call_stack: try to fix __declspec(noinline) #3 (diff) | |
download | winapi-debug-418e850b2b1f76b204af87a5d930f5129055e09a.tar.gz winapi-debug-418e850b2b1f76b204af87a5d930f5129055e09a.zip |
call_stack: can't noinline w/ MSVC, let's try a DLL
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 2215bfb..3d881b0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -38,9 +38,9 @@ after_build: test_script: - '"%install_dir%\bin\test\unit_tests.exe" --log_level=all' - '"%install_dir%\bin\test\call_stack.exe"' - - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[call_stack!test::baz" -SimpleMatch -Quiet) -or $(throw "test::baz not found in the call stack")' - - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[call_stack!test::bar" -SimpleMatch -Quiet) -or $(throw "test::bar not found in the call stack")' - - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[call_stack!test::foo" -SimpleMatch -Quiet) -or $(throw "test::foo not found in the call stack")' + - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[test_lib!test::baz" -SimpleMatch -Quiet) -or $(throw "test::baz not found in the call stack")' + - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[test_lib!test::bar" -SimpleMatch -Quiet) -or $(throw "test::bar not found in the call stack")' + - ps: '$(& "$env:install_dir\bin\test\call_stack.exe" | Select-String -Pattern "[test_lib!test::foo" -SimpleMatch -Quiet) -or $(throw "test::foo not found in the call stack")' for: # Only build Release builds on master to speed things up: |