diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2022-07-07 20:02:31 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2022-07-07 20:02:31 +0300 |
commit | fbcdab1afc8af7001ed2ade6bb972d559cd55553 (patch) | |
tree | b28a1827d5e88ef23e0fb697a912fe025d7b9974 /tests/rep-create.testscript | |
parent | f9cef3e7cebc66605e12a784c2439708650c6f19 (diff) |
Use [cmdline] type for canned commands in testscripts
Diffstat (limited to 'tests/rep-create.testscript')
-rw-r--r-- | tests/rep-create.testscript | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/rep-create.testscript b/tests/rep-create.testscript index 63b7064..bca7305 100644 --- a/tests/rep-create.testscript +++ b/tests/rep-create.testscript @@ -19,7 +19,7 @@ # Make sure the cloned repository has a valid location, so we can use # rep-info command to validate the repository info. # - clone_rep = mkdir 1/ && cp -r $src/stable 1/ + clone_rep = [cmdline] mkdir 1/ && cp -r $src/stable 1/ : without-key : @@ -120,7 +120,7 @@ # Make sure the cloned repository has a valid location, so we can use # rep-info command to validate the repository info. # - clone_rep = mkdir 1/ && cp -r ../stable 1/ + clone_rep = [cmdline] mkdir 1/ && cp -r ../stable 1/ : with-key : @@ -204,7 +204,7 @@ : Test that package manifest that contains an unknown name is properly handled. : { - clone_rep = cp -r $src/testing ./ + clone_rep = [cmdline] cp -r $src/testing ./ : fail : @@ -228,7 +228,7 @@ : Here we break the 'stable' repository prior to running a test. : { - clone_rep = cp -r $src/stable ./ + clone_rep = [cmdline] cp -r $src/stable ./ : no-repositories-manifest : |