aboutsummaryrefslogtreecommitdiff
path: root/tests/manifest/task-request.test
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-09-04 15:03:14 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-09-04 15:03:14 +0300
commit1e0c838ededf6d7d213c19f4c5b595e195356329 (patch)
tree142a8e43ec138b5b4a599f46da316fd98d948299 /tests/manifest/task-request.test
parente73b2b4a4ed4c814131782572c007f85fbf442a3 (diff)
Rename .test/test{} to .testscript/testscript{}
Diffstat (limited to 'tests/manifest/task-request.test')
-rw-r--r--tests/manifest/task-request.test127
1 files changed, 0 insertions, 127 deletions
diff --git a/tests/manifest/task-request.test b/tests/manifest/task-request.test
deleted file mode 100644
index c8c4150..0000000
--- a/tests/manifest/task-request.test
+++ /dev/null
@@ -1,127 +0,0 @@
-# file : tests/manifest/task-request.test
-# copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-test.options += -tq
-
-: valid
-:
-: Roundtrip the task request manifest.
-:
-{
- : all-values
- :
- $* <<EOF >>EOF
- : 1
- agent: upsa
- toolchain-name: queue
- toolchain-version: 0.5.0
- 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
- toolchain-name: queue
- toolchain-version: 0.5.0
- :
- id: a2b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
- name: windows_10-msvc_14
- summary: Windows 10 build 1607 with VC 14 update 3
- EOF
-}
-
-: redefinition
-:
-{
- : agent
- :
- $* <<EOI 2>'stdin:3:1: error: task request agent redefinition' == 1
- : 1
- agent: upsa
- agent: upsa
- EOI
-
- : toolchain-name
- :
- $* <<EOI 2>'stdin:3:1: error: task request toolchain name redefinition' == 1
- : 1
- toolchain-name: queue
- toolchain-name: queue
- EOI
-
- : toolchain-version
- :
- $* <<EOI 2>'stdin:3:1: error: task request toolchain version redefinition' == 1
- : 1
- toolchain-version: 0.5.0
- toolchain-version: 0.5.0
- EOI
-
- : fingerprint
- :
- $* <<EOI 2>'stdin:3:1: error: task request fingerprint redefinition' == 1
- : 1
- fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e
- fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e
- EOI
-}
-
-: empty
-:
-{
- : agent
- :
- $* <<EOI 2>'stdin:2:7: error: empty task request agent' == 1
- : 1
- agent:
- EOI
-
- : toolchain-name
- :
- $* <<EOI 2>'stdin:2:16: error: empty task request toolchain name' == 1
- : 1
- toolchain-name:
- EOI
-}
-
-: invalid-toolchain-version
-:
-$* <<EOI 2>'stdin:2:19: error: invalid task request toolchain version: invalid major version' == 1
-: 1
-toolchain-version:
-EOI
-
-: invalid-fingerprint
-:
-$* <<EOI 2>'stdin:2:14: error: invalid task request fingerprint' == 1
-: 1
-fingerprint: 123x
-EOI
-
-: missed
-:
-{
- : agent
- :
- $* <<EOI 2>'stdin:3:1: error: no task request agent specified' == 1
- : 1
- fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e
- EOI
-}
-
-: no-machines
-:
-$* <<EOI 2>'stdin:6:1: error: no task request machines specified' == 1
-: 1
-agent: upsa
-toolchain-name: queue
-toolchain-version: 0.5.0
-fingerprint: 1105fb394ee870adb154b7abfbbae5755df7dcef6c81db34e8d1b68d2653734e
-EOI