Skip to content

Commit 156bb3d

Browse files
committed
Try replace Release by Debug
[skip ci]
1 parent 92b3e3b commit 156bb3d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ build_script:
6767
- cd build
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% ..
70-
- msbuild /m /nologo /p:Configuration=Release tcpdump.sln
71-
- Release\tcpdump.exe --version
72-
- msbuild /nologo /p:Configuration=Release check.vcxproj
70+
- msbuild /m /nologo /p:Configuration=Debug tcpdump.sln
71+
- Debug\tcpdump.exe --version
72+
- msbuild /nologo /p:Configuration=Debug 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.exe is in the Release subdirectory.
13+
# tcpdump.exe is in the Debug subdirectory.
1414
#
15-
$TCPDUMP = "Release\\tcpdump.exe"
15+
$TCPDUMP = "Debug\\tcpdump.exe"
1616
} else {
1717
$TCPDUMP = "./tcpdump"
1818
}

0 commit comments

Comments
 (0)