We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0882803 commit 39412f4Copy full SHA for 39412f4
appveyor.yml
@@ -131,6 +131,9 @@ test_script:
131
# Build and run LDC D unittests
132
- ctest --output-on-failure -R "ldc2-unittest"
133
# Run LIT testsuite
134
+ # Exclude linking/link_internally.d with LLD < 6 due to a magic symbol
135
+ # required since VS 2017 v15.5 (see https://reviews.llvm.org/D41089).
136
+ - ps: If ($($Env:LLVM_VERSION[0]) -lt '6') { del tests\linking\link_internally.d }
137
- ctest -V -R "lit-tests"
138
# Run DMD testsuite
139
- if "%APPVEYOR_JOB_ARCH%"=="x64" ( set OS=Win_64) else ( set OS=Win_32)
0 commit comments