You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-1073741515 stands for 0xffffffffc00001350, which stands for error code 0xc00001350, which supposedly means ".NET 3.5 is not installed" (how did it manage to link then?), which supposedly should be pre-installed (why does it fail to start then?). This is a foreign problem space for me, so Windows builds will continue not to run the tests until somebody else figures this out.
After this problem is solved, the following change should be sufficient to start running the tests:
--- a/.appveyor.yml+++ b/.appveyor.yml@@ -19,6 +19,7 @@ install:
- 7z x .\npcap-sdk-1.13.zip -oc:\projects\libpcap\Win32\npcap-sdk
environment:
+ BUILDCONF: Release
#
# The OpenSSL library on the current AppVeyor Visual Studio 2019
# images has a weird opensslv.h that claims its 1.0.2, even though
@@ -168,4 +169,6 @@ build_script:
- cd build
- cmake --version
- cmake %REMOTE% %OPENSSL_ROOT_DIR% -DPacket_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" -DPacket_ROOT=c:>
- - msbuild /m /nologo /p:Configuration=Release pcap.sln+ - msbuild /m /nologo /p:Configuration=%BUILDCONF% pcap.sln+ - set FILTERTEST_BIN=run\%BUILDCONF%\filtertest.exe+ - perl ..\testprogs\TESTrun
The text was updated successfully, but these errors were encountered:
This is a follow-up to #1469.
-1073741515 stands for 0xffffffffc00001350, which stands for error code 0xc00001350, which supposedly means ".NET 3.5 is not installed" (how did it manage to link then?), which supposedly should be pre-installed (why does it fail to start then?). This is a foreign problem space for me, so Windows builds will continue not to run the tests until somebody else figures this out.
After this problem is solved, the following change should be sufficient to start running the tests:
The text was updated successfully, but these errors were encountered: