Home | History | Annotate | Download | only in test.expected
      1 [
      2   {
      3     "cmd": [
      4       "python",
      5       "-u",
      6       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
      7       "--json-output",
      8       "/path/to/tmp/json",
      9       "copy",
     10       "[START_DIR]/skia/infra/bots/assets/skp/VERSION",
     11       "/path/to/tmp/"
     12     ],
     13     "infra_step": true,
     14     "name": "Get downloaded SKP VERSION"
     15   },
     16   {
     17     "cmd": [
     18       "python",
     19       "-u",
     20       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
     21       "--json-output",
     22       "/path/to/tmp/json",
     23       "copy",
     24       "42",
     25       "[START_DIR]/tmp/SKP_VERSION"
     26     ],
     27     "infra_step": true,
     28     "name": "write SKP_VERSION"
     29   },
     30   {
     31     "cmd": [
     32       "python",
     33       "-u",
     34       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
     35       "--json-output",
     36       "/path/to/tmp/json",
     37       "copy",
     38       "[START_DIR]/skia/infra/bots/assets/skimage/VERSION",
     39       "/path/to/tmp/"
     40     ],
     41     "infra_step": true,
     42     "name": "Get downloaded skimage VERSION"
     43   },
     44   {
     45     "cmd": [
     46       "python",
     47       "-u",
     48       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
     49       "--json-output",
     50       "/path/to/tmp/json",
     51       "copy",
     52       "42",
     53       "[START_DIR]/tmp/SK_IMAGE_VERSION"
     54     ],
     55     "infra_step": true,
     56     "name": "write SK_IMAGE_VERSION"
     57   },
     58   {
     59     "cmd": [
     60       "python",
     61       "-u",
     62       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
     63       "--json-output",
     64       "/path/to/tmp/json",
     65       "copy",
     66       "[START_DIR]/skia/infra/bots/assets/svg/VERSION",
     67       "/path/to/tmp/"
     68     ],
     69     "infra_step": true,
     70     "name": "Get downloaded SVG VERSION"
     71   },
     72   {
     73     "cmd": [
     74       "python",
     75       "-u",
     76       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
     77       "--json-output",
     78       "/path/to/tmp/json",
     79       "copy",
     80       "42",
     81       "[START_DIR]/tmp/SVG_VERSION"
     82     ],
     83     "infra_step": true,
     84     "name": "write SVG_VERSION"
     85   },
     86   {
     87     "cmd": [
     88       "python",
     89       "-u",
     90       "RECIPE_MODULE[recipe_engine::file]/resources/fileutil.py",
     91       "--json-output",
     92       "/path/to/tmp/json",
     93       "ensure-directory",
     94       "--mode",
     95       "0777",
     96       "[START_DIR]/tmp"
     97     ],
     98     "infra_step": true,
     99     "name": "makedirs tmp_dir"
    100   },
    101   {
    102     "cmd": [
    103       "python",
    104       "-u",
    105       "\nimport contextlib\nimport math\nimport socket\nimport sys\nimport time\nimport urllib2\n\nHASHES_URL = 'https://storage.googleapis.com/skia-infra-gm/hash_files/gold-prod-hashes.txt'\nRETRIES = 5\nTIMEOUT = 60\nWAIT_BASE = 15\n\nsocket.setdefaulttimeout(TIMEOUT)\nfor retry in range(RETRIES):\n  try:\n    with contextlib.closing(\n        urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:\n      hashes = w.read()\n      with open(sys.argv[1], 'w') as f:\n        f.write(hashes)\n        break\n  except Exception as e:\n    print 'Failed to get uninteresting hashes from %s:' % HASHES_URL\n    print e\n    if retry == RETRIES:\n      raise\n    waittime = WAIT_BASE * math.pow(2, retry)\n    print 'Retry in %d seconds.' % waittime\n    time.sleep(waittime)\n",
    106       "[START_DIR]/tmp/uninteresting_hashes.txt"
    107     ],
    108     "env": {
    109       "BUILDTYPE": "Debug",
    110       "CHROME_HEADLESS": "1",
    111       "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]",
    112       "SKIA_OUT": "[START_DIR]/out"
    113     },
    114     "infra_step": true,
    115     "name": "get uninteresting hashes",
    116     "~followup_annotations": [
    117       "@@@STEP_LOG_LINE (a] python.inline@@@@",
    118       "@@@STEP_LOG_LINE (a] python.inline@import contextlib@@@",
    119       "@@@STEP_LOG_LINE (a] python.inline@import math@@@",
    120       "@@@STEP_LOG_LINE (a] python.inline@import socket@@@",
    121       "@@@STEP_LOG_LINE (a] python.inline@import sys@@@",
    122       "@@@STEP_LOG_LINE (a] python.inline@import time@@@",
    123       "@@@STEP_LOG_LINE (a] python.inline@import urllib2@@@",
    124       "@@@STEP_LOG_LINE (a] python.inline@@@@",
    125       "@@@STEP_LOG_LINE (a] python.inline@HASHES_URL = 'https://storage.googleapis.com/skia-infra-gm/hash_files/gold-prod-hashes.txt'@@@",
    126       "@@@STEP_LOG_LINE (a] python.inline@RETRIES = 5@@@",
    127       "@@@STEP_LOG_LINE (a] python.inline@TIMEOUT = 60@@@",
    128       "@@@STEP_LOG_LINE (a] python.inline@WAIT_BASE = 15@@@",
    129       "@@@STEP_LOG_LINE (a] python.inline@@@@",
    130       "@@@STEP_LOG_LINE (a] python.inline@socket.setdefaulttimeout(TIMEOUT)@@@",
    131       "@@@STEP_LOG_LINE (a] python.inline@for retry in range(RETRIES):@@@",
    132       "@@@STEP_LOG_LINE (a] python.inline@  try:@@@",
    133       "@@@STEP_LOG_LINE (a] python.inline@    with contextlib.closing(@@@",
    134       "@@@STEP_LOG_LINE (a] python.inline@        urllib2.urlopen(HASHES_URL, timeout=TIMEOUT)) as w:@@@",
    135       "@@@STEP_LOG_LINE (a] python.inline@      hashes = w.read()@@@",
    136       "@@@STEP_LOG_LINE (a] python.inline@      with open(sys.argv[1], 'w') as f:@@@",
    137       "@@@STEP_LOG_LINE (a] python.inline@        f.write(hashes)@@@",
    138       "@@@STEP_LOG_LINE (a] python.inline@        break@@@",
    139       "@@@STEP_LOG_LINE (a] python.inline@  except Exception as e:@@@",
    140       "@@@STEP_LOG_LINE (a] python.inline@    print 'Failed to get uninteresting hashes from %s:' % HASHES_URL@@@",
    141       "@@@STEP_LOG_LINE (a] python.inline@    print e@@@",
    142       "@@@STEP_LOG_LINE (a] python.inline@    if retry == RETRIES:@@@",
    143       "@@@STEP_LOG_LINE (a] python.inline@      raise@@@",
    144       "@@@STEP_LOG_LINE (a] python.inline@    waittime = WAIT_BASE * math.pow(2, retry)@@@",
    145       "@@@STEP_LOG_LINE (a] python.inline@    print 'Retry in %d seconds.' % waittime@@@",
    146       "@@@STEP_LOG_LINE (a] python.inline@    time.sleep(waittime)@@@",
    147       "@@@STEP_LOG_END (a] python.inline@@@"
    148     ]
    149   },
    150   {
    151     "cmd": [
    152       "python",
    153       "-u",
    154       "import os\nprint os.environ.get('SWARMING_BOT_ID', '')\n"
    155     ],
    156     "name": "get swarming bot id",
    157     "stdout": "/path/to/tmp/",
    158     "~followup_annotations": [
    159       "@@@STEP_LOG_LINE (a] python.inline@import os@@@",
    160       "@@@STEP_LOG_LINE (a] python.inline@print os.environ.get('SWARMING_BOT_ID', '')@@@",
    161       "@@@STEP_LOG_END (a] python.inline@@@"
    162     ]
    163   },
    164   {
    165     "cmd": [
    166       "python",
    167       "-u",
    168       "import os\nprint os.environ.get('SWARMING_TASK_ID', '')\n"
    169     ],
    170     "name": "get swarming task id",
    171     "stdout": "/path/to/tmp/",
    172     "~followup_annotations": [
    173       "@@@STEP_LOG_LINE (a] python.inline@import os@@@",
    174       "@@@STEP_LOG_LINE (a] python.inline@print os.environ.get('SWARMING_TASK_ID', '')@@@",
    175       "@@@STEP_LOG_END (a] python.inline@@@"
    176     ]
    177   },
    178   {
    179     "cmd": [
    180       "python",
    181       "-u",
    182       "RECIPE_MODULE[skia::flavor]/resources/symbolize_stack_trace.py",
    183       "[START_DIR]",
    184       "catchsegv",
    185       "[START_DIR]/out/Debug/dm",
    186       "--resourcePath",
    187       "[START_DIR]/skia/resources",
    188       "--skps",
    189       "[START_DIR]/skp",
    190       "--images",
    191       "[START_DIR]/skimage/dm",
    192       "--colorImages",
    193       "[START_DIR]/skimage/colorspace",
    194       "--nameByHash",
    195       "--properties",
    196       "gitHash",
    197       "abc123",
    198       "builder",
    199       "Test-Ubuntu16-Clang-NUC5PPYH-GPU-IntelHD405-x86_64-Debug-All",
    200       "buildbucket_build_id",
    201       "123454321",
    202       "swarming_bot_id",
    203       "skia-bot-123",
    204       "swarming_task_id",
    205       "123456",
    206       "--svgs",
    207       "[START_DIR]/svg",
    208       "--key",
    209       "arch",
    210       "x86_64",
    211       "compiler",
    212       "Clang",
    213       "configuration",
    214       "Debug",
    215       "cpu_or_gpu",
    216       "GPU",
    217       "cpu_or_gpu_value",
    218       "IntelHD405",
    219       "model",
    220       "NUC5PPYH",
    221       "os",
    222       "Ubuntu16",
    223       "--uninterestingHashesFile",
    224       "[START_DIR]/tmp/uninteresting_hashes.txt",
    225       "--writePath",
    226       "[CUSTOM_[SWARM_OUT_DIR]]/dm",
    227       "--dont_write",
    228       "pdf",
    229       "--randomProcessorTest",
    230       "--nocpu",
    231       "--config",
    232       "gl",
    233       "gldft",
    234       "glsrgb",
    235       "gles",
    236       "glesdft",
    237       "gltestthreading",
    238       "--src",
    239       "tests",
    240       "gm",
    241       "image",
    242       "colorImage",
    243       "svg",
    244       "--blacklist",
    245       "gltestthreading",
    246       "gm",
    247       "_",
    248       "lcdblendmodes",
    249       "gltestthreading",
    250       "gm",
    251       "_",
    252       "lcdoverlap",
    253       "gltestthreading",
    254       "gm",
    255       "_",
    256       "textbloblooper",
    257       "gltestthreading",
    258       "gm",
    259       "_",
    260       "bleed_alpha_bmp",
    261       "gltestthreading",
    262       "gm",
    263       "_",
    264       "bleed_alpha_bmp_shader",
    265       "gltestthreading",
    266       "gm",
    267       "_",
    268       "bleed_alpha_image",
    269       "gltestthreading",
    270       "gm",
    271       "_",
    272       "bleed_alpha_image_shader",
    273       "gltestthreading",
    274       "gm",
    275       "_",
    276       "savelayer_with_backdrop",
    277       "gltestthreading",
    278       "gm",
    279       "_",
    280       "persp_shaders_bw",
    281       "gltestthreading",
    282       "gm",
    283       "_",
    284       "dftext_blob_persp",
    285       "_",
    286       "svg",
    287       "_",
    288       "svgparse_",
    289       "glsrgb",
    290       "image",
    291       "_",
    292       "_",
    293       "_",
    294       "image",
    295       "_",
    296       "interlaced1.png",
    297       "_",
    298       "image",
    299       "_",
    300       "interlaced2.png",
    301       "_",
    302       "image",
    303       "_",
    304       "interlaced3.png",
    305       "_",
    306       "image",
    307       "_",
    308       ".arw",
    309       "_",
    310       "image",
    311       "_",
    312       ".cr2",
    313       "_",
    314       "image",
    315       "_",
    316       ".dng",
    317       "_",
    318       "image",
    319       "_",
    320       ".nef",
    321       "_",
    322       "image",
    323       "_",
    324       ".nrw",
    325       "_",
    326       "image",
    327       "_",
    328       ".orf",
    329       "_",
    330       "image",
    331       "_",
    332       ".raf",
    333       "_",
    334       "image",
    335       "_",
    336       ".rw2",
    337       "_",
    338       "image",
    339       "_",
    340       ".pef",
    341       "_",
    342       "image",
    343       "_",
    344       ".srw",
    345       "_",
    346       "image",
    347       "_",
    348       ".ARW",
    349       "_",
    350       "image",
    351       "_",
    352       ".CR2",
    353       "_",
    354       "image",
    355       "_",
    356       ".DNG",
    357       "_",
    358       "image",
    359       "_",
    360       ".NEF",
    361       "_",
    362       "image",
    363       "_",
    364       ".NRW",
    365       "_",
    366       "image",
    367       "_",
    368       ".ORF",
    369       "_",
    370       "image",
    371       "_",
    372       ".RAF",
    373       "_",
    374       "image",
    375       "_",
    376       ".RW2",
    377       "_",
    378       "image",
    379       "_",
    380       ".PEF",
    381       "_",
    382       "image",
    383       "_",
    384       ".SRW",
    385       "--nonativeFonts",
    386       "--verbose"
    387     ],
    388     "cwd": "[START_DIR]/skia",
    389     "env": {
    390       "BUILDTYPE": "Debug",
    391       "CHROME_HEADLESS": "1",
    392       "LD_LIBRARY_PATH": "[START_DIR]/linux_vulkan_intel_driver_debug",
    393       "LIBGL_DRIVERS_PATH": "[START_DIR]/linux_vulkan_intel_driver_debug",
    394       "PATH": "<PATH>:RECIPE_PACKAGE_REPO[depot_tools]",
    395       "SKIA_OUT": "[START_DIR]/out",
    396       "VK_ICD_FILENAMES": "[START_DIR]/linux_vulkan_intel_driver_debug/intel_icd.x86_64.json"
    397     },
    398     "name": "symbolized dm"
    399   },
    400   {
    401     "name": "$result",
    402     "recipe_result": null,
    403     "status_code": 0
    404   }
    405 ]