Changeset 52f5a58 in git
- Timestamp:
- Sep 25, 2011, 8:32:06 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 94247563c0a457265fa75e6855cb41bf4fff3a39
- Parents:
- 3de3f9ab13ec9653869bd4238e04e07baef77aec
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-25 20:32:06+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:29+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Tst/regress.cmd
r3de3f9 r52f5a58 1045 1045 foreach (@ARGV) 1046 1046 { 1047 if( /^([^:]*): *(.*)$/ ) 1048 { 1049 $_=$2; 1050 } 1051 1052 if ( /^\s*([^ ].*)$/ ) 1053 { 1054 $_ = $1; 1055 } 1056 1057 if ( /^\.\/(.*)$/ ) 1058 { 1059 $_ = $1; 1060 } 1061 1047 1062 $test_file = $_; 1048 1063 1049 1064 tcLog("test_file: $test_file"); 1050 1065 1051 1066 if ( /^(.*)\.([^\.\/]*)$/ ) 1052 1067 { 1053 1068 $_ = $1; 1054 1069 $extension = $2; 1055 } 1070 } else 1071 { 1072 print ("Wrong input: [$_] has no extension!"); 1073 tcWarn("Wrong input: [$_] has no extension!"); 1074 next; 1075 } 1076 1077 1078 1079 1056 1080 1057 1081 if ( /^(.*)\/([^\/]*)$/ ) … … 1100 1124 next; 1101 1125 } 1126 if( /^([^:]*): *(.*)$/ ) 1127 { 1128 $_=$2; 1129 } 1130 1131 if ( /^\s*([^\s].*)$/ ) 1132 { 1133 $_ = $1; 1134 } 1135 1136 if ( /^\.\/(.*)$/ ) 1137 { 1138 $_ = $1; 1139 } 1140 1102 1141 next if (/^\s*$/); #ignore whitespaced lines 1103 1142 chop if (/\n$/); #chop of \n … … 1113 1152 $test_file = $_; 1114 1153 } 1154 1155 $test_file =~ s/^[ ]*\.\///; 1115 1156 1116 1157
Note: See TracChangeset
for help on using the changeset viewer.