1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
##############################################################################
# Modules Revision 3.0
# Providing a flexible user environment
#
# File: modules.60-initx/%M%
# Revision: %I%
# First Edition: 2005/12/22
# Last Mod.: %U%, %G%
#
# Authors: R.K. Owen, rk@owen.sj.ca.us
#
# Description: Testuite testsequence
# Command: initadd, initrm
# Modulefiles:
# Sub-Command:
#
# Comment: %C{
# Check the initadd sub-commands
# }C%
#
##############################################################################
skip_if_quick_mode
# different behavior than C-version: on Tcl-version no message is printed
testouterr_cmd sh "initswitch poo/2.0 poo/1.0" "OK" ""
_test_modules csh "initswitch" "$modload null foo bar poo/1.0 foobar\n$line2"
testouterr_cmd ksh "initswit foo food" "OK" ""
_test_modules ksh "initswitch" "$modload null food bar poo/1.0 foobar\n$line2"
testouterr_cmd csh "initsw bar bar/2.0" "OK" ""
_test_modules csh "initswitch" "$modload null food bar/2.0 poo/1.0 foobar\n$line2"
# test on fully empty init file
file copy -force "$env(HOME)/.modules.savenull" "$env(HOME)/.modules"
testouterr_cmd sh "initswitch foo food" "ERR" "$find_msg_sh"
_test_modules sh "initswitch" "#"
|