From 64c97de5be7f899e1d36e620b3a5959d122909c7 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sun, 9 Oct 2016 20:29:04 -0700 Subject: Renamed timefsN examples to fuse_notify_* This should make it more obvious at first glance what the different examples do. --- test/test_examples.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/test_examples.py b/test/test_examples.py index 0d754d2..9d83ae9 100755 --- a/test/test_examples.py +++ b/test/test_examples.py @@ -142,10 +142,12 @@ def test_poll(tmpdir): else: umount(mount_process, mnt_dir) -@pytest.mark.parametrize("name", ('timefs1', 'timefs2')) +@pytest.mark.parametrize("name", + ('notify_inval_inode', + 'notify_store_retrieve')) @pytest.mark.parametrize("options", LL_OPTIONS) @pytest.mark.parametrize("notify", (True, False)) -def test_timefs12(tmpdir, name, options, notify): +def test_notify1(tmpdir, name, options, notify): mnt_dir = str(tmpdir) cmdline = base_cmdline + \ [ pjoin(basename, 'example', name), @@ -172,10 +174,10 @@ def test_timefs12(tmpdir, name, options, notify): umount(mount_process, mnt_dir) @pytest.mark.parametrize("notify", (True, False)) -def test_timefs3(tmpdir, notify): +def test_notify_inval_entry(tmpdir, notify): mnt_dir = str(tmpdir) cmdline = base_cmdline + \ - [ pjoin(basename, 'example', 'timefs3'), + [ pjoin(basename, 'example', 'notify_inval_entry'), '-f', '--update-interval=2', '--timeout=4', mnt_dir ] if not notify: -- cgit v1.2.3