Memory.json 1.16 KB
Newer Older
1
{
2
  "owners": ["yangguo@chromium.org", "jgruber@chromium.org"],
3 4 5 6
  "name": "Memory",
  "run_count": 5,
  "units": "bytes",
  "path" : ["."],
7
  "binary": "cctest",
8
  "main": "test-serialize/SerializationStats",
9 10 11 12 13 14 15
  "tests": [
    {
      "name": "ReservedMemoryIsolate",
      "results_regexp": "(\\d+) bytes per isolate$"
    },
    {
      "name": "ReservedMemoryContext",
16
      "results_regexp": "(\\d+) bytes per context #0$"
17 18 19
    },
    {
      "name": "SnapshotSizeStartup",
20
      "results_regexp": "(\\d+) bytes in \\d+ chunks for startup$"
21
    },
22 23 24 25
    {
      "name": "SnapshotSizeReadOnly",
      "results_regexp": "(\\d+) bytes for read-only$"
    },
26
    {
27
      "name": "SnapshotSizeContext",
28
      "results_regexp": "(\\d+) bytes in \\d+ chunks for context #0$"
29 30 31 32 33 34 35 36
    },
    {
      "name": "DeserializationTimeIsolate",
      "results_regexp": "\\[Deserializing isolate \\(\\d+ bytes\\) took ([\\d.]+) ms\\]"
    },
    {
      "name": "DeserializationTimeContext",
      "results_regexp": "\\[Deserializing context #0 \\(\\d+ bytes\\) took ([\\d.]+) ms\\]"
37 38 39 40
    },
    {
      "name": "EmbeddedBuiltinsSize",
      "results_regexp": "^Embedded blob is (\\d+) bytes$"
41 42 43
    }
  ]
}