diff options
author | Guy Harris <guy@alum.mit.edu> | 2020-02-05 01:59:12 -0800 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2020-02-05 01:59:12 -0800 |
commit | b3a96c363cde7b681418d04444598b1537228e2c (patch) | |
tree | e11184be314b7dc0eee241abc3773633bb3c490e /.appveyor.yml | |
parent | 89b3d91181d243253df410529546a213cff4650b (diff) | |
download | tcpdump-b3a96c363cde7b681418d04444598b1537228e2c.tar.gz |
Don't do "make check" using a solution file.
If you're not part of the solution, you're part of the problem. To do a
test, just build with check.vcxproj; the precise way to sacrifice a goat
over msbuild to get it to do the equivalent of "{make,ninja} check" when
building with tcpdump.sln is not exactly obvious.
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 79e2bf4c..974642fc 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -47,4 +47,4 @@ build_script: - cd build - cmake -DPCAP_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" .. - msbuild /m /nologo /p:Configuration=Release tcpdump.sln - - msbuild /nologo /p:Configuration=Release check.sln + - msbuild /nologo /p:Configuration=Release check.vcxproj |