********> bugfix.9 Author: K.Bryson, OML. Date: 20/4/94 Programs: Spasms Tests. Severity: Minor. Problem 1: Runtests file runs tests ddrive and nmr which do not exist. Problem 2: Re-testing of neon_fep fails. Fix 1: Make the following change to test2/spasms/Runtests. ---------------------------------------------------------------------- *** OLD Runtests --- NEW Runtests *************** *** 36,43 **** # set tests = $1 if ( "$tests" == "" || "$tests" == "all") then ! set tests = "anisole butane cap crambin cyclobut ddrive edyn " ! set tests = "$tests gbutane multiple neon_fep nh4_fep nmr peptide" endif set dir = $2 --- 36,43 ---- # set tests = $1 if ( "$tests" == "" || "$tests" == "all") then ! set tests = "anisole butane cap crambin cyclobut edyn " ! set tests = "$tests gbutane multiple neon_fep nh4_fep peptide" endif set dir = $2 ---------------------------------------------------------------------- Temporary workarounds: Just ignore errors given by missing tests. Fix 2: Make the following change to test2/spasms/neon_fep/Runtest ---------------------------------------------------------------------- *** OLD Runtest --- NEW Runtest *************** *** 19,24 **** --- 19,26 ---- # set tests = "neon" + if (-e acdump) \rm -f acdump + ../Test "$tests" $1 $2 ../Clean ---------------------------------------------------------------------- Temporary workarounds: Delete acdump file by hand from the neon_fep test directory before re-testing it.