diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-19 17:55:44 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2017-04-19 17:55:44 +0300 |
commit | 5050df2747d7b586dae4890efbe670d2cf584eae (patch) | |
tree | e5dc33c0f14a806e7defcad47caf05478613edcc /tests/manifest/task-request.test | |
parent | d81b21e46f325d0c12df3054fe08aa29bb1061f3 (diff) |
Make challenge and fingerprint manifest values optional
Diffstat (limited to 'tests/manifest/task-request.test')
-rw-r--r-- | tests/manifest/task-request.test | 40 |
1 files changed, 24 insertions, 16 deletions
diff --git a/tests/manifest/task-request.test b/tests/manifest/task-request.test index 135dc8d..157b2ea 100644 --- a/tests/manifest/task-request.test +++ b/tests/manifest/task-request.test @@ -8,15 +8,30 @@ test.options += -tq : : Roundtrip the task request manifest. : -$* <<EOF >>EOF -: 1 -agent: upsa -fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e -: -id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 -name: windows_10-msvc_14 -summary: Windows 10 build 1607 with VC 14 update 3 -EOF +{ + : all-values + : + $* <<EOF >>EOF + : 1 + agent: upsa + fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e + : + id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + name: windows_10-msvc_14 + summary: Windows 10 build 1607 with VC 14 update 3 + EOF + + : no-fingerprint + : + $* <<EOF >>EOF + : 1 + agent: upsa + : + id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 + name: windows_10-msvc_14 + summary: Windows 10 build 1607 with VC 14 update 3 + EOF +} : redefinition : @@ -65,13 +80,6 @@ EOI : 1 fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e EOI - - : fingerprint - : - $* <<EOI 2>'stdin:3:1: error: no task request fingerprint specified' == 1 - : 1 - agent: upsa - EOI } : no-machines |