From a589e61c2b807196696632eb17e8ad573daa9c08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Fri, 11 Sep 2026 21:20:46 +0200 Subject: Use colon as preferred job ID separator Changelog: Colon `:` is now accepted and preferred as job ID separator. --- test/script/artifact.et | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'test/script/artifact.et') diff --git a/test/script/artifact.et b/test/script/artifact.et index d353b49..c8a726c 100644 --- a/test/script/artifact.et +++ b/test/script/artifact.et @@ -11,14 +11,14 @@ test ExtractArtifact: expect /job-finish generate done/ from p local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.first", "extracted" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:first", "extracted" ] local: shell on n as s: cat ./extracted expect /content 1/ from s local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.second", "generate.third", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:second", "generate:third", "." ] local: shell on n as s: cat ./f2 @@ -27,7 +27,7 @@ test ExtractArtifact: expect /content 3/ from s local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.dir", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:dir", "." ] local: shell on n as s: cat ./dir/f2 @@ -38,7 +38,7 @@ test ExtractArtifact: expect /content b/ from s local: - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.sdir", "extracted_subdir" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:sdir", "extracted_subdir" ] local: shell on n as s: cat ./extracted_subdir/fb @@ -61,7 +61,7 @@ test ExtractArtifactForce: local: shell on n: touch extracted - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.first", "extracted" ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:first", "extracted" ] local: shell on n as s: cat ./extracted @@ -71,13 +71,13 @@ test ExtractArtifactForce: #local: # shell on n: # touch f1 - # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.first", "." ] + # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:first", "." ] #local: local: shell on n: touch f1 - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.first", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:first", "." ] local: shell on n as s: cat ./f1 @@ -88,14 +88,14 @@ test ExtractArtifactForce: # shell on n: # mkdir dir # touch dir/existing_file - # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.dir", "." ] + # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:dir", "." ] #local: local: shell on n: mkdir dir touch dir/existing_file - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.dir", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:dir", "." ] local: shell on n as s: ls dir @@ -110,13 +110,13 @@ test ExtractArtifactForce: #local: # shell on n: # touch dir - # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate.dir", "." ] + # spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "generate:dir", "." ] #local: local: shell on n: touch dir - spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate.dir", "." ] + spawn on n as p args [ "--storage=.minici", "${scripts.path}/minici.yaml", "extract", "--force", "generate:dir", "." ] local: shell on n as s: ls dir -- cgit v1.2.3