mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
1b7c4b9bce
- somewhat neater, more consistent and more readable output - possible to set any lvm.conf value: aux lvmconf "section/key = value" - LVM_TEST_NODEBUG to suppress the (lengthy) "## DEBUG" output - back-substitution on test output ($TESTDIR/$PREFIX -> @TESTDIR@/@PREFIX@) - support code moved from test/ to test/lib/ --> less clutter
8 lines
163 B
Bash
8 lines
163 B
Bash
#!/bin/sh
|
|
|
|
. lib/paths
|
|
cmd=$(echo ./$0|sed "s,.*/,,")
|
|
|
|
test "$cmd" = lvm && exec "$abs_top_builddir/tools/lvm" "$@"
|
|
exec "$abs_top_builddir/tools/lvm" "$cmd" "$@"
|