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/config.testscript | |
parent | f9cef3e7cebc66605e12a784c2439708650c6f19 (diff) |
Use [cmdline] type for canned commands in testscripts
Diffstat (limited to 'tests/config.testscript')
-rw-r--r-- | tests/config.testscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/config.testscript b/tests/config.testscript index 0bcfb93..70eef42 100644 --- a/tests/config.testscript +++ b/tests/config.testscript @@ -14,12 +14,12 @@ # The most commonly used configuration cloning command that copies it from the # parent scope working directory. # -clone_cfg = cp -pr ../cfg ./ +clone_cfg = [cmdline] cp -pr ../cfg ./ # Clones the original (presumably empty) configuration from the root scope # working directory. # -clone_root_cfg = cp -pr $~/cfg ./ +clone_root_cfg = [cmdline] cp -pr $~/cfg ./ # Setup a test command to use a cloned configuration directory by default. # |