Skip to content

Commit 92b3e3b

Browse files
committed
[DRAFT] Just try doing checks on Windows to view any error messages...
[skip ci]
1 parent 3175c97 commit 92b3e3b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,5 @@ build_script:
6868
- if NOT DEFINED PLATFORM cmake -DPCAP_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" ..
6969
- if DEFINED PLATFORM cmake -DPCAP_ROOT=c:\projects\libpcap\Win32\%SDK% -G"%GENERATOR%" -A %PLATFORM% ..
7070
- msbuild /m /nologo /p:Configuration=Release tcpdump.sln
71+
- Release\tcpdump.exe --version
72+
- msbuild /nologo /p:Configuration=Release check.vcxproj

tests/TESTrun

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ if (!($TCPDUMP = $ENV{TCPDUMP_BIN})) {
1010
if ($^O eq 'MSWin32') {
1111
#
1212
# XXX - assume, for now, a Visual Studio debug build, so that
13-
# tcpdump is in the Debug subdirectory.
13+
# tcpdump.exe is in the Release subdirectory.
1414
#
15-
$TCPDUMP = "Debug\\tcpdump"
15+
$TCPDUMP = "Release\\tcpdump.exe"
1616
} else {
1717
$TCPDUMP = "./tcpdump"
1818
}

0 commit comments

Comments
 (0)