p4sanity_check.sh #1

  • //
  • guest/
  • perforce_software/
  • sdp/
  • main/
  • Server/
  • Unix/
  • p4/
  • common/
  • bin/
  • p4sanity_check.sh
  • View
  • Commits
  • Open Download .zip Download (1014 B)
#!/bin/bash
#==============================================================================
# Copyright and license info is available in the LICENSE file included with
# the Server Deployment Package (SDP), and also available online:
# https://swarm.workshop.perforce.com/projects/perforce-software-sdp/view/main/LICENSE
#------------------------------------------------------------------------------

export SDP_INSTANCE=${SDP_INSTANCE:-Unset} 
export SDP_INSTANCE=${1:-$SDP_INSTANCE} 
if [[ $SDP_INSTANCE == Unset ]]; then 
   echo "Instance parameter not supplied." 
   echo "You must supply the Perforce instance as a parameter to this script." 
   exit 1 
fi 

source /p4/common/bin/p4_vars $SDP_INSTANCE

echo -e "\nPerforce settings are:\n"

p4 set

echo -e "\nPerforce server info:\n"

p4 info

if [[ $? -ne 0 ]]; then
   printf "\nERROR: p4d is not reachable with the given settings.\n\n"
   exit 1
fi

echo -e "\nScanning recent changelists.\nEnsure output below looks reasonable:\n"
p4 changes -t -m 10
# Change User Description Committed
#4 31369 C. Thomas Tyler Released SDP 2024.2.31367 (2025/03/23).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#3 30915 C. Thomas Tyler Released SDP 2024.1.30913 (2024/11/20).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#2 30297 C. Thomas Tyler Released SDP 2023.2.30295 (2024/05/08).
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'.
#1 20353 C. Thomas Tyler Released SDP 2016.1.20348.
Copy Up using 'p4 copy -r -b perforce_software-sdp-dev',
with selective removal of changes related to work-in-progress
changes.
//guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/p4sanity_check.sh
#1 20313 C. Thomas Tyler Added p4sanity_check.sh script from Battle School (slightly updated).