Commit d56c45c
committed
Reduce running time of testPickling
testPickling pickled directories recursively. It seems this was unintentional
as it caused testPickling to test most files of the dotty compiler three times,
including two runs where basically the whole compiler was tested together. This
was very slow as pickling (and retaining pickled info) caused very high memory pressure.
We now compile root compiler directories non-recursively.1 parent 7848ef6 commit d56c45c
File tree
2 files changed
+8
-5
lines changed- compiler/test/dotty/tools
- dotc
- vulpix
2 files changed
+8
-5
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
210 | 210 | | |
211 | 211 | | |
212 | 212 | | |
213 | | - | |
214 | | - | |
| 213 | + | |
| 214 | + | |
215 | 215 | | |
216 | 216 | | |
217 | 217 | | |
218 | 218 | | |
219 | 219 | | |
220 | | - | |
| 220 | + | |
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1113 | 1113 | | |
1114 | 1114 | | |
1115 | 1115 | | |
1116 | | - | |
| 1116 | + | |
1117 | 1117 | | |
1118 | 1118 | | |
1119 | 1119 | | |
1120 | 1120 | | |
1121 | 1121 | | |
1122 | | - | |
| 1122 | + | |
| 1123 | + | |
| 1124 | + | |
| 1125 | + | |
1123 | 1126 | | |
1124 | 1127 | | |
1125 | 1128 | | |
| |||
0 commit comments