diff options
author | greg@kroah.com <greg@kroah.com> | 2003-11-19 00:39:43 -0800 |
---|---|---|
committer | Greg KH <gregkh@suse.de> | 2005-04-26 21:06:24 -0700 |
commit | 1ac5204774c4080d16f308ac3077db0dae8d221c (patch) | |
tree | 3beab9c579a9559d028ee52bfb9a34f852efdc37 /test/label_test | |
parent | a43180955a49a6838f7ce564db3cc1d10f36b8fb (diff) |
[PATCH] add remove actions to the test scripts
Diffstat (limited to 'test/label_test')
-rw-r--r-- | test/label_test | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test/label_test b/test/label_test index faa516fdce..0bf89226cb 100644 --- a/test/label_test +++ b/test/label_test @@ -12,9 +12,22 @@ export ACTION=add export DEVPATH=block/sda ../udev block +ls udev export DEVPATH=block/sda/sda3 ../udev block +ls udev + +export ACTION=remove +export DEVPATH=block/sda + +../udev block +ls udev + +export DEVPATH=block/sda/sda3 + +../udev block +ls udev |