diff options
author | Neal H. Walfield <neal@g10code.com> | 2016-12-06 12:13:22 +0100 |
---|---|---|
committer | Neal H. Walfield <neal@g10code.com> | 2016-12-06 12:16:58 +0100 |
commit | db6d8cfdc118131f497596ef1ffc121949377754 (patch) | |
tree | e0ee1d95fdab789d600176127fa5cd1320c4c221 | |
parent | tests: Check the signature count in the TOFU TFS record. (diff) | |
download | gnupg2-db6d8cfdc118131f497596ef1ffc121949377754.tar.xz gnupg2-db6d8cfdc118131f497596ef1ffc121949377754.zip |
tests: Change (interactive-shell) to start an interactive shell
* tests/gpgscm/tests.scm (interactive-shell): Start an interactive
shell.
Signed-off-by: Neal H. Walfield <neal@g10code.com>
-rw-r--r-- | tests/gpgscm/tests.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gpgscm/tests.scm b/tests/gpgscm/tests.scm index 72afa9913..1c170b083 100644 --- a/tests/gpgscm/tests.scm +++ b/tests/gpgscm/tests.scm @@ -492,4 +492,4 @@ ;; Spawn an os shell. (define (interactive-shell) - (call-with-fds `(,(getenv "SHELL")) 0 1 2)) + (call-with-fds `(,(getenv "SHELL") -i) 0 1 2)) |