Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Issue 15014011: GM: include filename extension (.png) of each output file in JSON summary (Closed)

Created:
7 years, 7 months ago by epoger
Modified:
7 years, 7 months ago
Reviewers:
scroggo
CC:
skia-review_googlegroups.com, rmistry
Visibility:
Public.

Description

GM: include filename extension (.png) of each output file in JSON summary Doing this so that, once we *do* start writing PDF checksums into the JSON summary, we'll be able to distinguish those from the PNG checksums. Otherwise, we could have naming collisions.

Patch Set 1 #

Total comments: 1

Patch Set 2 : add_file_extension_to_json #

Total comments: 1

Patch Set 3 : slight_cleanup #

Total comments: 1

Patch Set 4 : remove_imagefile_tests #

Total comments: 4
Unified diffs Side-by-side diffs Delta from patch set Stats (+69 lines, -57 lines) Patch
M gm/gm.h View 1 2 1 chunk +5 lines, -0 lines 1 comment Download
M gm/gm_expectations.cpp View 1 2 2 chunks +5 lines, -3 lines 3 comments Download
M gm/gmmain.cpp View 1 2 4 chunks +8 lines, -3 lines 0 comments Download
M gm/tests/outputs/compared-against-different-pixels-images/output-expected/json-summary.txt View 1 2 chunks +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/compared-against-different-pixels-images/output-expected/stderr View 1 1 chunk +2 lines, -2 lines 0 comments Download
M gm/tests/outputs/compared-against-different-pixels-json/output-expected/json-summary.txt View 1 2 chunks +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/compared-against-empty-dir/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/compared-against-identical-bytes-images/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/compared-against-identical-bytes-json/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/compared-against-identical-pixels-images/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/compared-against-identical-pixels-json/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/ignore-expectations-mismatch/output-expected/json-summary.txt View 1 2 chunks +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/intentionally-skipped-tests/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/no-readpath/output-expected/json-summary.txt View 1 1 chunk +2 lines, -2 lines 0 comments Download
M gm/tests/outputs/nonverbose/output-expected/json-summary.txt View 1 1 chunk +4 lines, -4 lines 0 comments Download
M gm/tests/outputs/pipe-playback-failure/output-expected/json-summary.txt View 1 1 chunk +6 lines, -6 lines 0 comments Download
M gm/tests/outputs/pipe-playback-failure/output-expected/stderr View 1 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 9 (0 generated)
epoger
https://codereview.chromium.org/15014011/diff/1/gm/tests/run.sh File gm/tests/run.sh (right): https://codereview.chromium.org/15014011/diff/1/gm/tests/run.sh#newcode28 gm/tests/run.sh:28: WRITE_IMAGE_FILES=1 First patchset turns on WRITE_IMAGE_FILES in the gm ...
7 years, 7 months ago (2013-05-08 19:39:48 UTC) #1
epoger
https://codereview.chromium.org/15014011/diff/4001/gm/gm_expectations.cpp File gm/gm_expectations.cpp (right): https://codereview.chromium.org/15014011/diff/4001/gm/gm_expectations.cpp#newcode169 gm/gm_expectations.cpp:169: testNameWithExtension.append(".png"); Patchset 2 adds ".png" extension to the lines ...
7 years, 7 months ago (2013-05-08 19:45:08 UTC) #2
epoger
https://codereview.chromium.org/15014011/diff/5098/gm/gm_expectations.cpp File gm/gm_expectations.cpp (right): https://codereview.chromium.org/15014011/diff/5098/gm/gm_expectations.cpp#newcode169 gm/gm_expectations.cpp:169: testNameWithExtension.append(kPNG_FileExtension); In patchset 3, we replace all appearances of ...
7 years, 7 months ago (2013-05-08 19:57:16 UTC) #3
epoger
https://codereview.chromium.org/15014011/diff/10006/gm/gm.h File gm/gm.h (right): https://codereview.chromium.org/15014011/diff/10006/gm/gm.h#newcode1 gm/gm.h:1: Patchset 4 reverts the setting of WRITE_IMAGE_FILES=1 from patchset ...
7 years, 7 months ago (2013-05-08 20:03:28 UTC) #4
epoger
Ready for review at patchset 4. If you look at the earlier patchsets, you'll see ...
7 years, 7 months ago (2013-05-08 20:06:07 UTC) #5
scroggo
https://codereview.chromium.org/15014011/diff/10006/gm/gm_expectations.cpp File gm/gm_expectations.cpp (right): https://codereview.chromium.org/15014011/diff/10006/gm/gm_expectations.cpp#newcode169 gm/gm_expectations.cpp:169: testNameWithExtension.append(kPNG_FileExtension); This will break my use of this function ...
7 years, 7 months ago (2013-05-08 20:39:45 UTC) #6
epoger
https://codereview.chromium.org/15014011/diff/10006/gm/gm_expectations.cpp File gm/gm_expectations.cpp (right): https://codereview.chromium.org/15014011/diff/10006/gm/gm_expectations.cpp#newcode169 gm/gm_expectations.cpp:169: testNameWithExtension.append(kPNG_FileExtension); On 2013/05/08 20:39:45, scroggo wrote: > This will ...
7 years, 7 months ago (2013-05-09 14:20:07 UTC) #7
scroggo
https://codereview.chromium.org/15014011/diff/10006/gm/gm_expectations.cpp File gm/gm_expectations.cpp (right): https://codereview.chromium.org/15014011/diff/10006/gm/gm_expectations.cpp#newcode169 gm/gm_expectations.cpp:169: testNameWithExtension.append(kPNG_FileExtension); On 2013/05/09 14:20:07, epoger wrote: > On 2013/05/08 ...
7 years, 7 months ago (2013-05-09 14:28:48 UTC) #8
epoger
7 years, 7 months ago (2013-05-09 18:26:35 UTC) #9
Closing in favor of https://codereview.chromium.org/14890017/ .  I'll make the
changes there...

Powered by Google App Engine
This is Rietveld 408576698