test(06-17): stage 3 complete Low/High compression and reach 27 rows

- expand COMPRESSIONS to NoCompression / LowCompression / HighCompression so the matrix is 3 map counts x 3 compressions x 3 timing items = 27 rows
- keep measureCase, fixture build order, side load and 06-16 files untouched; still zero assertions
- one full run: 5 perf files / 45 tests passed, 0 WARNING/ERROR codes, saveablesReal.perf.ts (27 tests) in 379ms -- no case approaches the 30000ms testTimeout
This commit is contained in:
unanmed 2026-09-16 16:21:26 +08:00
parent 4476e19805
commit a44c5d8918

View File

@ -87,9 +87,11 @@ interface CompressionCase {
readonly value: SaveCompression;
}
/** 存读档覆盖的压缩档,阶段 3 扩为 No / Low / High 三档 */
/** 存读档覆盖的三档压缩,顺序固定 */
const COMPRESSIONS: readonly CompressionCase[] = [
{ label: 'NoCompression', value: SaveCompression.NoCompression }
{ label: 'NoCompression', value: SaveCompression.NoCompression },
{ label: 'LowCompression', value: SaveCompression.LowCompression },
{ label: 'HighCompression', value: SaveCompression.HighCompression }
];
/** 数据集条目中本文件需要的字段 */