############################################################################## # Modules Revision 3.0 # Providing a flexible user environment # # File: modules.00-init/%M% # Revision: %I% # First Edition: 95/12/06 # Last Mod.: %U%, %G% # # Authors: Jens Hamisch, Jens.Hamisch@Strawberry.COM # # Description: Testuite testsequence # Command: # Sub-Command: # # Comment: %C{ # This module defines all patterns used further in the # testsuite # }C% # ############################################################################## if { $verbose > 0 } { send_user "\tInitializing the testsuite ...\n" } # # Regular expressions matching error and warning outputs # set messages "(\[^(\]+)\[(\]\[0-9\]+\[)\]" set error_msgs "$messages:ERROR:\[0-9\]+" set warn_msgs "$messages:WARN:\[0-9\]+" set prob_msgs "$messages:PROB:\[0-9\]+" set verb_msgs "$messages:VERB:\[0-9\]+" # # Line used within modules # set modlin "-------------------------------------------------------------------\n" # # Set up the config-file variable if possible # proc default-configfile {} { global MODULECMD global config_file default_modulecmd set config_file "[file dirname $MODULECMD]/config.h" } default-configfile