Fix integration test closes #17673
authorPeter Amstutz <peter.amstutz@curii.com>
Thu, 13 May 2021 20:13:10 +0000 (16:13 -0400)
committerPeter Amstutz <peter.amstutz@curii.com>
Thu, 13 May 2021 20:13:10 +0000 (16:13 -0400)
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz@curii.com>

sdk/cwl/tests/arvados-tests.yml

index 199ced9f41fc936a92eb6a8fe07809675971c2c4..41feb7796baf4301af1bb6316952c3c3020f1b45 100644 (file)
   doc: "Test issue 17462 - secondary file objects on file defaults are not resolved"
 
 - job: null
-  output: {}
+  output: {
+    "stuff": {
+        "location": "bar.txt",
+        "basename": "bar.txt",
+        "class": "File",
+        "checksum": "sha1$da39a3ee5e6b4b0d3255bfef95601890afd80709",
+        "size": 0
+    }
+  }
   tool: 17521-dot-slash-glob.cwl
   doc: "Test issue 17521 - bug with leading './' capturing files in subdirectories"
 
 - job: null
-  output: {}
+  output: {
+    "stuff": {
+        "basename": "foo",
+        "class": "Directory",
+        "listing": [
+            {
+                "basename": "bar.txt",
+                "checksum": "sha1$da39a3ee5e6b4b0d3255bfef95601890afd80709",
+                "class": "File",
+                "location": "foo/bar.txt",
+                "size": 0
+            }
+        ],
+        "location": "foo"
+    }
+  }
   tool: 10380-trailing-slash-dir.cwl
   doc: "Test issue 10380 - bug with trailing slash when capturing an output directory"