(file) Return to test.mak CVS log (file) (dir) Up to [Pegasus] / pegasus / mak

  1 martin 1.22 #//%LICENSE////////////////////////////////////////////////////////////////
  2 martin 1.23 #//
  3 martin 1.22 #// Licensed to The Open Group (TOG) under one or more contributor license
  4             #// agreements.  Refer to the OpenPegasusNOTICE.txt file distributed with
  5             #// this work for additional information regarding copyright ownership.
  6             #// Each contributor licenses this file to you under the OpenPegasus Open
  7             #// Source License; you may not use this file except in compliance with the
  8             #// License.
  9 martin 1.23 #//
 10 martin 1.22 #// Permission is hereby granted, free of charge, to any person obtaining a
 11             #// copy of this software and associated documentation files (the "Software"),
 12             #// to deal in the Software without restriction, including without limitation
 13             #// the rights to use, copy, modify, merge, publish, distribute, sublicense,
 14             #// and/or sell copies of the Software, and to permit persons to whom the
 15             #// Software is furnished to do so, subject to the following conditions:
 16 martin 1.23 #//
 17 martin 1.22 #// The above copyright notice and this permission notice shall be included
 18             #// in all copies or substantial portions of the Software.
 19 martin 1.23 #//
 20 martin 1.22 #// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 21 martin 1.23 #// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 22 martin 1.22 #// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 23             #// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 24             #// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 25             #// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 26             #// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 27 martin 1.23 #//
 28 martin 1.22 #//////////////////////////////////////////////////////////////////////////
 29 jim.wunderlich 1.16 
 30 jim.wunderlich 1.19 # The following are the user id's and passwords to be used by the tests.
 31 kumpf          1.24 # If they are not defined in the environment then they will be assigned
 32                     # here to the defaults. There are two user ID's and the coresponding
 33                     # passwords. One is for a reqular user that does not require priviledged
 34 jim.wunderlich 1.19 # (root) access and the other set for a user that has privileged (root) access.
 35                     #
 36                     # Use the folowing in a test that does not require privileged access
 37                     #
 38 kumpf          1.24 #        PEGASUS_TEST_USER_ID
 39 jim.wunderlich 1.19 #        PEGASUS_TEST_USER_PASS
 40 kumpf          1.24 #
 41 jim.wunderlich 1.19 # Use the following in test that requires a privileged user's access
 42                     #
 43 kumpf          1.24 #       PEGASUS_TEST_PRIV_USER_ID
 44 jim.wunderlich 1.19 #       PEGASUS_TEST_PRIV_USER_PASS
 45                     #
 46                     # Currently PEGASUS_TEST_USER_ID and PEGASUS_TEST_USER_PASS both default to
 47                     # guest if they are not specified within the users environment.
 48                     #
 49 kumpf          1.24 # Currently (Feb. 10, 2006) PEGASUS_TEST_PRIV_USER_ID and
 50                     # PEGASUS_TEST_PRIV_USER_PASS are not used and therefore they have no
 51                     # default value. When they are taken into use it may be desirable to have
 52                     # a default value that will never be used to make errors when they are not
 53                     # assigned a valid value more meaningful. An error of the form
 54                     # "guestroot user does not exist" rather than "user does not exist"
 55                     # would make it easier to find the problem because "guestroot" could be
 56                     # found in the tree and determined to come from the default value of
 57 jim.wunderlich 1.19 # PEGASUS_TEST_PRIVUSER_ID.       JR Wunderlich Feb 10, 2006
 58                     #
 59                     
 60                     ifndef PEGASUS_TEST_USER_ID
 61                     PEGASUS_TEST_USER_ID=guest
 62                     endif
 63                     
 64                     ifndef PEGASUS_TEST_USER_PASS
 65                     PEGASUS_TEST_USER_PASS=guest
 66                     endif
 67                     
 68                     # ifndef PEGASUS_TEST_PRIV_USER_ID
 69                     # PEGASUS_TEST_PRIV_USER_ID=guestroot
 70                     # endif
 71                     
 72                     # ifndef PEGASUS_TEST_PRIV_USER_PASS
 73                     # PEGASUS_TEST_PRIV_USER_PASS=guestroot
 74                     # endif
 75                     
 76                     
 77                     
 78 jim.wunderlich 1.19 
 79 a.dunfey       1.20 ifeq ($(OS_TYPE),windows)
 80 david.dillard  1.11     STRIPCRS = stripcrs $(RESULTFILE) $(MASTERRESULTFILE)
 81 kumpf          1.1  else
 82 carson.hovey   1.21     ifeq  ($(OS_TYPE), vms)
 83 gs.keenan      1.17         STRIPCRS = stripcrs $(RESULTFILE) $(MASTERRESULTFILE)
 84                         else
 85 kumpf          1.24         STRIPCRS =
 86 gs.keenan      1.17     endif
 87 kumpf          1.1  endif
 88                     
 89 marek          1.25 STRIPL = stripline
 90                     
 91 rohini.deshpande 1.26 MU = mu
 92                       
 93 gs.keenan        1.17 REDIRECTERROR = 2>&1
 94                       
 95 jim.wunderlich   1.13 
 96 kumpf            1.1  ifdef DIFF
 97 david.dillard    1.11     COMPARERESULTS = @$(DIFF) $(MASTERRESULTFILE) $(RESULTFILE)
 98 jim.wunderlich   1.13     COMPARERESULTS_DS = @$(call DIFFSORT,$(MASTERRESULTFILE),$(RESULTFILE))
 99 kumpf            1.1  else
100 david.dillard    1.11     COMPARERESULTS = @$(ECHO) "Results not compared."
101 jim.wunderlich   1.13     COMPARERESULTS_DS = @$(ECHO) "Results not compared."
102 kumpf            1.1  endif
103                       
104 kumpf            1.8  ifdef PEGASUS_TMP
105 david.dillard    1.11     TMP_DIR = $(subst \,/,$(PEGASUS_TMP))
106 kumpf            1.8  else
107 david.dillard    1.11     TMP_DIR = .
108 kumpf            1.8  endif
109 kumpf            1.6  
110 kumpf            1.2  default:
111                       
112 chuck            1.10 #l10n
113                       messages: $(ERROR)

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2