Changeset 160051 in webkit
- Timestamp:
- Dec 3, 2013, 3:26:46 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r160048 r160051 1 2013-12-03 Filip Pizlo <fpizlo@apple.com> 2 3 REGRESSION: repro scripts disappear when you rerun tests 4 https://bugs.webkit.org/show_bug.cgi?id=125184 5 6 Reviewed by Mark Hahnenberg. 7 8 This bug made it difficult to quickly see if a test that recently failed is still 9 failing while also running a new batch of tests. 10 11 Repro scripts are supposed to stay around until you delete them explicitly. This 12 patch accomplishes that. 13 14 * Scripts/run-jsc-stress-tests: 15 1 16 2013-12-03 peavo@outlook.com <peavo@outlook.com> 2 17 -
trunk/Tools/Scripts/run-jsc-stress-tests
r160048 r160051 908 908 def eachResultFile(startingDir, &block) 909 909 dirsToClean = [startingDir] 910 until dirsToClean.empty? do910 until dirsToClean.empty? 911 911 nextDir = dirsToClean.pop 912 912 Dir.foreach(nextDir) { … … 1140 1140 end 1141 1141 1142 FileUtils.rm_rf $outputDir if $outputDir.directory? and not $bundle 1142 def clean(file) 1143 FileUtils.rm_rf file unless $bundle 1144 end 1145 1146 clean($outputDir + "failed") 1147 clean($outputDir + ".vm") 1148 clean($outputDir + ".runner") 1149 clean($outputDir + ".tests") 1150 clean($outputDir + "_payload") 1151 1143 1152 Dir.mkdir($outputDir) unless $outputDir.directory? 1144 1145 begin1146 File.delete($outputDir + "failed")1147 rescue1148 end1149 1153 1150 1154 $outputDir = $outputDir.realpath … … 1153 1157 prepareBundle unless $bundle 1154 1158 1155 puts " "1159 puts 1156 1160 1157 1161 prepareTestRunner unless $bundle
Note:
See TracChangeset
for help on using the changeset viewer.