aboutsummaryrefslogtreecommitdiffstats
path: root/tests/openpgp/shell.scm
diff options
context:
space:
mode:
Diffstat (limited to 'tests/openpgp/shell.scm')
-rw-r--r--tests/openpgp/shell.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/openpgp/shell.scm b/tests/openpgp/shell.scm
index 347b3a08c..af4f25498 100644
--- a/tests/openpgp/shell.scm
+++ b/tests/openpgp/shell.scm
@@ -47,7 +47,9 @@
(pathsep-split (getenv "PATH"))))
#t)
-(echo "\nEnjoy your test environment. "
+(if (prompt-yes-no? "Run system shell" #t)
+ ((echo "\nEnjoy your test environment. "
"Type 'exit' to exit it, it will be cleaned up after you.\n")
-
-(interactive-shell)
+ (interactive-shell))
+ ((echo "\nEnjoy the REPL.")
+ (interactive-repl (current-environment))))