StopServer.bat #1

  • //
  • guest/
  • robert_cowham/
  • perforce/
  • API/
  • P4.Net/
  • main/
  • test/
  • StopServer.bat
  • View
  • Commits
  • Open Download .zip Download (492 B)
@echo off

set ScriptPath=%~p0

rem make sure we have a p4d.exe
if not exist "%CD%\p4d.exe" (
	echo "Must have p4d.exe in the current directory to run tests!"
	goto :eof
)

rem make sure we have a p4.exe
if not exist "%CD%\p4.exe" (
	echo "Must have p4.exe in the current directory to run tests!"
	goto :eof
)

set P4DPORT=5791

set P4Dexe=%ScriptPath%\p4d.exe
set P4exe=%ScriptPath%\p4.exe

echo.
echo Stopping Perforce Server
echo.

%P4exe% -p %P4DPORT% -u TestUser2 admin stop >nul 2>nul

# Change User Description Committed
#1 6414 Robert Cowham Initial branch
//guest/shawn_hladky/P4.Net/main/test/StopServer.bat
#2 5918 Shawn Hladky P4.Net unit test changes for fx1.1
#1 5830 Shawn Hladky P4.Net: reorg to support release branches
//guest/shawn_hladky/P4.Net/test/StopServer.bat
#2 5798 Shawn Hladky P4.Net...  still not ready for beta
Added license to all files
Added several doc files
Misc bugs
#1 5680 Shawn Hladky few more missed files