test_cuse: fix runtime error
authorNikolaus Rath <Nikolaus@rath.org>
Fri, 5 Jul 2019 10:03:31 +0000 (11:03 +0100)
committerGitHub <noreply@github.com>
Fri, 5 Jul 2019 10:03:31 +0000 (11:03 +0100)
We are no longer using the capfd mechanism.

test/test_examples.py

index 72c41001c97767dd732153770aa624dc8851a993..26f3b92f3f4c7181ec0eccb1b3e0ff5196a36f44 100755 (executable)
@@ -338,12 +338,12 @@ def test_notify_inval_entry(tmpdir, notify, output_checker):
 
 @pytest.mark.skipif(os.getuid() != 0,
                     reason='needs to run as root')
-def test_cuse(capfd, output_checker):
+def test_cuse(output_checker):
 
     # Valgrind warns about unknown ioctls, that's ok
-    capfd.register_output(r'^==([0-9]+).+unhandled ioctl.+\n'
-                          r'==\1== \s{3}.+\n'
-                          r'==\1== \s{3}.+$', count=0)
+    output_checker.register_output(r'^==([0-9]+).+unhandled ioctl.+\n'
+                                   r'==\1== \s{3}.+\n'
+                                   r'==\1== \s{3}.+$', count=0)
 
     devname = 'cuse-test-%d' % os.getpid()
     devpath = '/dev/%s' % devname