From bc97194adc2d563d9044d082a28427fbda1c9cfd Mon Sep 17 00:00:00 2001 From: Yann Dirson Date: Fri, 16 Mar 2007 22:45:45 +0000 Subject: [PATCH] Add a script to quickly run an interactive test session. This uses the capabilities of the test library to provide a throw-away playground to test how the current stgit tree behaves. To use it, run the following command: (cd t && ./interactive.sh) You'll get a shell in a brand new git tree. Exiting that shell will get rid of this temporary directory. Signed-off-by: Yann Dirson --- t/interactive.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 t/interactive.sh diff --git a/t/interactive.sh b/t/interactive.sh new file mode 100755 index 00000000..e4eaef93 --- /dev/null +++ b/t/interactive.sh @@ -0,0 +1,12 @@ +#!/bin/sh +# +# Copyright (c) 2007 Yann Dirson +# + +test_description='Get a test environment for interactive experimentation.' + +. ./test-lib.sh + +bash + +test_done -- 2.11.4.GIT