Patch Detail
Show a patch.
GET /api/patches/1600/?format=api
{ "id": 1600, "url": "https://patchwork.libcamera.org/api/patches/1600/?format=api", "web_url": "https://patchwork.libcamera.org/patch/1600/", "project": { "id": 1, "url": "https://patchwork.libcamera.org/api/projects/1/?format=api", "name": "libcamera", "link_name": "libcamera", "list_id": "libcamera_core", "list_email": "libcamera-devel@lists.libcamera.org", "web_url": "", "scm_url": "", "webscm_url": "" }, "msgid": "<20190704012656.14188-1-niklas.soderlund@ragnatech.se>", "date": "2019-07-04T01:26:56", "name": "[libcamera-devel] test: Allow self-contained tests to run in parallel", "commit_ref": "cea3ecc8e10fc00c93e4c1331430f06c0a936eb7", "pull_url": null, "state": "accepted", "archived": false, "hash": "7bc84bee6462a72398cf2e9f4e33e1f0617f746c", "submitter": { "id": 5, "url": "https://patchwork.libcamera.org/api/people/5/?format=api", "name": "Niklas Söderlund", "email": "niklas.soderlund@ragnatech.se" }, "delegate": null, "mbox": "https://patchwork.libcamera.org/patch/1600/mbox/", "series": [ { "id": 396, "url": "https://patchwork.libcamera.org/api/series/396/?format=api", "web_url": "https://patchwork.libcamera.org/project/libcamera/list/?series=396", "date": "2019-07-04T01:26:56", "name": "[libcamera-devel] test: Allow self-contained tests to run in parallel", "version": 1, "mbox": "https://patchwork.libcamera.org/series/396/mbox/" } ], "comments": "https://patchwork.libcamera.org/api/patches/1600/comments/", "check": "pending", "checks": "https://patchwork.libcamera.org/api/patches/1600/checks/", "tags": {}, "headers": { "Return-Path": "<niklas.soderlund@ragnatech.se>", "Received": [ "from bin-mail-out-06.binero.net (bin-mail-out-06.binero.net\n\t[195.74.38.229])\n\tby lancelot.ideasonboard.com (Postfix) with ESMTPS id E593560BEE\n\tfor <libcamera-devel@lists.libcamera.org>;\n\tThu, 4 Jul 2019 03:27:02 +0200 (CEST)", "from bismarck.berto.se (unknown [145.14.112.32])\n\tby bin-vsp-out-01.atm.binero.net (Halon) with ESMTPA\n\tid d0f13f37-9dfa-11e9-8ab4-005056917a89;\n\tThu, 04 Jul 2019 03:27:01 +0200 (CEST)" ], "X-Halon-ID": "d0f13f37-9dfa-11e9-8ab4-005056917a89", "Authorized-sender": "niklas@soderlund.pp.se", "From": "=?utf-8?q?Niklas_S=C3=B6derlund?= <niklas.soderlund@ragnatech.se>", "To": "libcamera-devel@lists.libcamera.org", "Date": "Thu, 4 Jul 2019 03:26:56 +0200", "Message-Id": "<20190704012656.14188-1-niklas.soderlund@ragnatech.se>", "X-Mailer": "git-send-email 2.22.0", "MIME-Version": "1.0", "Content-Type": "text/plain; charset=UTF-8", "Content-Transfer-Encoding": "8bit", "Subject": "[libcamera-devel] [PATCH] test: Allow self-contained tests to run\n\tin parallel", "X-BeenThere": "libcamera-devel@lists.libcamera.org", "X-Mailman-Version": "2.1.23", "Precedence": "list", "List-Id": "<libcamera-devel.lists.libcamera.org>", "List-Unsubscribe": "<https://lists.libcamera.org/options/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=unsubscribe>", "List-Archive": "<https://lists.libcamera.org/pipermail/libcamera-devel/>", "List-Post": "<mailto:libcamera-devel@lists.libcamera.org>", "List-Help": "<mailto:libcamera-devel-request@lists.libcamera.org?subject=help>", "List-Subscribe": "<https://lists.libcamera.org/listinfo/libcamera-devel>,\n\t<mailto:libcamera-devel-request@lists.libcamera.org?subject=subscribe>", "X-List-Received-Date": "Thu, 04 Jul 2019 01:27:03 -0000" }, "content": "The IPA, IPC and Stream tests are self-contained so they can run in\nparallel.\n\nSigned-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>\n---\n test/ipa/meson.build | 2 +-\n test/ipc/meson.build | 2 +-\n test/stream/meson.build | 2 +-\n 3 files changed, 3 insertions(+), 3 deletions(-)", "diff": "diff --git a/test/ipa/meson.build b/test/ipa/meson.build\nindex bca39fa3f6d06ae4..1749ab7d43381fd7 100644\n--- a/test/ipa/meson.build\n+++ b/test/ipa/meson.build\n@@ -8,5 +8,5 @@ foreach t : ipa_test\n link_with : test_libraries,\n include_directories : test_includes_internal)\n \n- test(t[0], exe, suite : 'ipa', is_parallel : false)\n+ test(t[0], exe, suite : 'ipa')\n endforeach\ndiff --git a/test/ipc/meson.build b/test/ipc/meson.build\nindex ca8375f35df91731..cc46b41c76870def 100644\n--- a/test/ipc/meson.build\n+++ b/test/ipc/meson.build\n@@ -8,5 +8,5 @@ foreach t : ipc_tests\n link_with : test_libraries,\n include_directories : test_includes_internal)\n \n- test(t[0], exe, suite : 'ipc', is_parallel : false)\n+ test(t[0], exe, suite : 'ipc')\n endforeach\ndiff --git a/test/stream/meson.build b/test/stream/meson.build\nindex 2f2493de38ae0954..005f4aa4996ad563 100644\n--- a/test/stream/meson.build\n+++ b/test/stream/meson.build\n@@ -7,5 +7,5 @@ foreach t : stream_tests\n dependencies : libcamera_dep,\n link_with : test_libraries,\n include_directories : test_includes_internal)\n- test(t[0], exe, suite: 'stream', is_parallel: false)\n+ test(t[0], exe, suite: 'stream')\n endforeach\n", "prefixes": [ "libcamera-devel" ] }