[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference azur::mcc

Title:DECmcc user notes file. Does not replace IPMT.
Notice:Use IPMT for problems. Newsletter location in note 6187
Moderator:TAEC::BEROUD
Created:Mon Aug 21 1989
Last Modified:Wed Jun 04 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:6497
Total number of notes:27359

2510.0. "surpressing Waiting to startup message" by MICROW::LANG () Fri Mar 06 1992 18:44

    
    Is there any way to suppresss the following message during envrollment
    on ultrix?  We have regression tests which fail, becuase this message
    does not always appear:
    
    Waiting: MM mcc_tps_am has not completed startup
	
    	thanks,
    
    		Bonnie
T.RTitleUserPersonal
Name
DateLines
2510.1No way todayTOOK::MINTZErik Mintz, DECmcc Development, dtn 226-5033Fri Mar 06 1992 20:023
There is currently no way to supress it.
There is already a QAR to have this message removed completely.

2510.2heres a DTM filter for the interumMICROW::LANGThu Mar 19 1992 19:5743
	Thanks for the reply.  I thought this might be helpful, if
	anyone has regression tests and wants to get rid of it 
	for now.  Its a filter, invoked by the following command:

	Just replace mcc_tps_am with your mm name.

			Bonnie


$ EDIT/TPU/NOSECTION/COMMAND=t:strip_wait_msg.tpu/NODISPLAY DTM$RESULTS

The file is following is strip_wait_msg.tpu:


PROCEDURE strip_wait_msg (strng)
!++
! This procedure is used as a filter for DTM to get rid of
! the message indicating a DECmcc MM component is waiting to startup
! 
!--
! local variables
LOCAL   srch_txt, line_num ;
!
srch_txt :=  strng ; ! set up pattern to search for.
LOOP
	line_num := SEARCH_QUIETLY (srch_txt, FORWARD) ;
	EXITIF line_num = 0 ; ! No strings matched, so exit
	POSITION(line_num) ;
	ERASE_LINE ; ! and this gets rid of the second line.
ENDLOOP ;
ENDPROCEDURE

!++
! This the executable statements which performs housekeeping and
! calls the above procedure.
!--
input_file := GET_INFO (COMMAND_LINE, "file_name") ;
main_buff := CREATE_BUFFER ("main", input_file) ;
POSITION (BEGINNING_OF (main_buff)) ;
strip_wait_msg ("Waiting: MM mcc_tps_am has not completed startup") ; ! Call the procedure
WRITE_FILE (main_buff,input_file) ; ! write out the new file
QUIT ;