(file) Return to TestMakefile CVS log (file) (dir) Up to [Pegasus] / pegasus

Diff for /pegasus/TestMakefile between version 1.30 and 1.31

version 1.30, 2005/05/10 02:55:54 version 1.31, 2005/05/10 23:28:03
Line 61 
Line 61 
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Clients/ssltrustmgr/tests -f Makefile test_setup         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Clients/ssltrustmgr/tests -f Makefile test_setup
  
 poststarttests:  poststarttestsclean:
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/CQL/tests/Queries -f Makefile clean         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/CQL/tests/Queries -f Makefile clean
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryExpression/tests/Queries -f Makefile clean         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Pegasus/Query/QueryExpression/tests/Queries -f Makefile clean
         $(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile clean         $(MAKE) --directory=$(PEGASUS_ROOT)/test/wetest -f Makefile clean
   
   poststarttests: poststarttestsclean
         $(CIMSERVER_START_SERVICE)         $(CIMSERVER_START_SERVICE)
         $(SLEEP) 5         $(SLEEP) 5
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests
Line 141 
Line 143 
  
 ############################################################################## ##############################################################################
 ## ##
 ## TestBinReposiory rule is used to run the poststarttests suite on  ## TestBinRepository rule is used to run the poststarttests suite on
 ## the Binary Reposiory.  ## the Binary Reposiory built using cimmofl
 ## ##
 ## Running the poststarttests as part of the nightly's I have three choices.  ## TestBinRepositoryServer rule is used to run the poststarttests suite on
 ## 1. a)remove repository,  ## the Binary Reposiory built using cimmof
 ##    b)build bin repository as repository,  
 ##    c)run test,  
 ##    d)remove repository,  
 ##    e)build xml repository.  
 ## ##
 ## 2. a)build bin repository as repository_bin,  
 ##    b)run test on repository_bin  ############################
 ## ##
 ## Currently scenaerio 1 works but it is slow.  ## TestBinRepository
 ## Scenaerio 2 is close to working. There may be a few test remaining that  
 ## don't honor the REPOSITORY_NAME build config variable.  
 ## ##
   TestBinRepository: TestBinClean TestBinBuildRepo  TestBinRepo
           $(ECHO) TestBinRepository +++++ passed all test
  
   ############################
   ##
   ## TestBinRepositoryServer
   ##
   TestBinRepositoryServer: TestBinClean  TestBinBuildRepoServ TestBinRepo
           $(ECHO) TestBinRepositoryServer +++++ passed all test
  
   ###########################
 TestBinRepository: TestBinRepository2  
         $(ECHO) TestBinRepository +++++ passed all test  
 ## ##
 ## 1. a)remove repository,  ## TestBinClean
 ##    b)build bin repository as repository,  
 ##    c)run test,  
 ##    d)remove repository,  
 ##    e)build xml repository.  
 ## ##
 TestBinRepository1:  TestBinClean:
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryclean          $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryclean REPOSITORY_NAME=repository_bin
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository REPOSITORY_MODE=BIN  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository REPOSITORY_MODE=BIN  
   ###########################
   ##
   ## TestBinStartServer
   ##
   TestBinStartServer:
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="enableBinaryRepository=true"          - $(MKDIRHIER) $(PEGASUS_HOME)/repository_bin
           $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="enableBinaryRepository=true repositoryDir=$(PEGASUS_HOME)/repository_bin"
         $(SLEEP) 5         $(SLEEP) 5
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests REPOSITORY_MODE=BIN  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop  ###########################
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryclean  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository  
 ## ##
 ## 2. a)build bin repository as repository_bin,  ## TestBinBuildRepo
 ##    b)run test on repository_bin  
 ## ##
 TestBinRepository2:  TestBinBuildRepo:
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryclean REPOSITORY_NAME=repository_bin  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repository REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepository REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
         $(MAKE) --directory=$(PEGASUS_ROOT)/src/Server -f Makefile install_run  
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstart CIMSERVER_CONFIG_OPTIONS="enableBinaryRepository=true repositoryDir=$(PEGASUS_HOME)/repository_bin"  
         $(SLEEP) 5  ###########################
         $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN  ##
   ## TestBinBuildRepoServ
   ##
   TestBinBuildRepoServ: TestBinStartServer
           $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile repositoryServer REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
           $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile testrepositoryServer REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop         $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
  
  
   ###########################
   ##
   ## TestBinRepo
   ##
   TestBinRepo: poststarttestsclean TestBinStartServer
           $(MAKE) --directory=$(PEGASUS_ROOT) -f Makefile poststarttests REPOSITORY_NAME=repository_bin REPOSITORY_MODE=BIN
           $(MAKE) --directory=$(PEGASUS_ROOT) -f TestMakefile -i cimstop
   
  
  
 ############################################################################### ###############################################################################


Legend:
Removed from v.1.30  
changed lines
  Added in v.1.31

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2