summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarian Csontos <mcsontos@redhat.com>2016-03-09 14:03:17 +0100
committerMarian Csontos <mcsontos@redhat.com>2016-03-09 14:04:28 +0100
commit18291fd01639939812779e63de0d64a4224729ad (patch)
tree846a87f8f05cdfff7bc1a389bb5a80e6a90e169a
parente72184bb761a7f2c48caf5dae64e75d57f64bfe0 (diff)
downloadlvm2-18291fd01639939812779e63de0d64a4224729ad.tar.gz
test: Remove work-in-progress code from dbustest
(cherry picked from commit 3189d4d50492f5b78cf3920a7f499fd1020983c6)
-rw-r--r--test/api/dbustest.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/api/dbustest.sh b/test/api/dbustest.sh
index 0ef9a9584..039689daa 100644
--- a/test/api/dbustest.sh
+++ b/test/api/dbustest.sh
@@ -30,40 +30,5 @@ fi
# Setup the python path so we can run
export PYTHONPATH=$abs_top_builddir/daemons
-if true; then
-
aux prepare_lvmdbusd
$abs_top_builddir/test/dbus/lvmdbustest.py -v
-
-else
-
-# Start the dbus service
-$abs_top_builddir/daemons/lvmdbusd/lvmdbusd --debug --udev > debug.log_lvmdbusd 2>&1 &
-
-# Give the service some time to start before we try to run the
-# unit test
-sleep 1
-
-LVM_DBUS_PID=$(ps aux | grep lvmdbus[d] | awk '{print $2}')
-if [ "CHK${LVM_DBUS_PID}" == "CHK" ];then
- echo "Failed to start lvmdbusd daemon"
- exit 1
-fi
-END
-
-# Run all the unit tests
-$abs_top_builddir/test/dbus/lvmdbustest.py -v || fail=$?
-
-# We can run individual unit tests by doing this
-# $abs_top_builddir/test/dbus/lvmdbustest.py -v TestDbusService.test_snapshot_merge
-
-echo "Stopping service"
-kill $LVM_DBUS_PID || {
- sleep 1
- kill -9 $LVM_DBUS_PID
-}
-wait
-
-exit ${fail:-"0"}
-
-fi