btrfs-progs: tests: add test console

Add a wrapper that sets up environment the same way a test would use it.
Use it for quick prototyping or testing, the commands and output is
logged.

Signed-off-by: David Sterba <dsterba@suse.com>
master
David Sterba 2016-06-22 14:07:46 +02:00
parent 329ff544a4
commit ac1e484a0a
2 changed files with 24 additions and 0 deletions

1
.gitignore vendored
View File

@ -43,6 +43,7 @@ library-test
library-test-static
/tests/*-tests-results.txt
/tests/test-console.txt
/tests/test.img
aclocal.m4

View File

@ -0,0 +1,23 @@
#!/bin/sh
# a shell with test environment set up, logged commands and output
LANG=C
SCRIPT_DIR=$(dirname $(readlink -f $0))
TOP=$(readlink -f $SCRIPT_DIR/../)
TEST_DEV=${TEST_DEV:-}
RESULTS="$TOP/tests/test-console.txt"
IMAGE="$TOP/tests/test.img"
source common
source common.convert
setup_root_helper
echo "Eval loop in test environment (log: $RESULTS)"
echo -e " ---------------------\nStarting session, `date`" >> "$RESULTS"
echo -n "`pwd`> "
while read x; do
echo "COMMAND: $x" >> "$RESULTS"
{ eval $x; } 2>&1 | tee -a "$RESULTS"
echo -n "`pwd`> "
done