diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2025-12-02 21:06:44 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-12-02 21:07:07 +0100 |
| commit | 3dd105c0a3f7034a97de667d370ed4e7ee15bbe2 (patch) | |
| tree | 519f8796ed1c18efadde99e2d67860e9eaacd9d8 /test/script/run.et | |
| parent | 5c558f6b107a82370d7207caad9bf88fcab77c86 (diff) | |
Add missing default repo ID also for transitive dependencies
Diffstat (limited to 'test/script/run.et')
| -rw-r--r-- | test/script/run.et | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/script/run.et b/test/script/run.et index 82ad075..124ae37 100644 --- a/test/script/run.et +++ b/test/script/run.et @@ -579,3 +579,14 @@ test RunWithManyRepos: expect_success from p of "second.$mt.$r2t.$r3t.$r5t" expect /(.*)/ from p capture done guard (done == "run-finish") + + local: + spawn on n as p args [ "--storage=minici", "--repo=r1:./dir_r1", "--repo=r3:./dir_r3", "--repo=r4:./dir_r4", "--repo=r2:./dir_r2", "--repo=r5:./dir_r5", "--destination=d1:./dest1", "./main/minici.yaml", "run", "--rerun-all", "combined_transitive" ] + expect_success from p of "first.$r1t.$r2t.$r3t.$r4t" + expect_success from p of "second.$mt.$r2t.$r3t.$r5t" + expect_success from p of "dependent.$mt.$r1t.$r2t.$r3t.$r4t" + expect_success from p of "transitive.$mt.$r1t.$r2t.$r3t.$r4t" + expect_success from p of "combined.$mt.$r1t.$r2t.$r3t.$r4t.$r5t" + expect_success from p of "combined_transitive.$mt.$r1t.$r2t.$r3t.$r4t.$r5t" + expect /(.*)/ from p capture done + guard (done == "run-finish") |