• Home
  • Raw
  • Download

Lines Matching +full:stale +full:- +full:issue +full:- +full:message

46                                '-f', mnt_dir, '-o', ','.join(options) ]
48 # supports single-threading only
49 cmdline.append('-s')
55 name, mnt_dir, '-o', ','.join(options) ]
105 open(filename + 'does-not-exist', 'r+')
120 output_checker.register_output(r'^ unique: [0-9]+, error: -[0-9]+ .+$',
124 output_checker.register_output(r"^ \d\d \[[^\]]+ message: 'No error: 0'\]",
133 '--plus', '-f', mnt_dir ]
137 '-f', mnt_dir ]
139 cmdline.append('-d')
144 cmdline.append('-o')
183 syscall_test_cmd.append('-53')
201 cmdline.append('--nocache')
221 # src_dir as the cache will become stale.
247 # so opt-in for this test from kernel 5.14
249 syscall_test_cmd.append('-u')
267 cmdline = base_cmdline + [progname, '-f', mnt_dir ]
292 '-f', mnt_dir ]
314 cmdline = base_cmdline + [ progname, '-f', mnt_file ]
339 '-f', '--update-interval=1',
340 '--timeout=5', mnt_dir ]
342 cmdline.append('--no-notify')
373 output_checker.register_output(r'^==([0-9]+).+unhandled ioctl.+\n'
377 devname = 'cuse-test-%d' % os.getpid()
381 '-f', '--name=%s' % devname ]
493 os.chown(filename, uid_new, -1)
499 os.chown(filename, -1, gid_new)
587 # and (since -o hard_remove is not used) renames it instead of
589 # still report an st_nlink value of 2 (cf. issue #157).
643 'fill up the buffer - ' * 3) + str(i)
684 os.truncate(filename, size - 1024)
685 assert os.stat(filename).st_size == size - 1024
687 assert fh.read(size) == TEST_DATA[:size-1024]
708 os.ftruncate(fd, size - 1024)
709 assert os.fstat(fd).st_size == size - 1024
711 assert fh.read(size) == TEST_DATA[:size-1024]
719 mtime = fstat.st_mtime - 42.23
724 mtime_ns = fstat.st_mtime_ns - int(42.23*1e9)
729 assert abs(fstat.st_atime - atime) < 1
730 assert abs(fstat.st_mtime - mtime) < 1
732 assert abs(fstat.st_atime_ns - atime_ns) <= ns_tol
733 assert abs(fstat.st_mtime_ns - mtime_ns) <= ns_tol