Advertisement
Guest User

Untitled

a guest
Jun 24th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.42 KB | None | 0 0
  1. =================================================== test session starts ====================================================
  2. platform linux -- Python 3.10.5, pytest-7.1.2, pluggy-1.0.0
  3. rootdir: /mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools
  4. collected 28 items
  5.  
  6. tests/test_basic.py .FFFFF [ 21%]
  7. tests/test_fixture.py ....ssssss.. [ 64%]
  8. tests/test_fuse.py ssssssssss [100%]
  9.  
  10. ========================================================= FAILURES =========================================================
  11. _______________________________________________________ test_format ________________________________________________________
  12.  
  13. tmpdir = local('/tmp/pytest-of-alex/pytest-3/test_format0')
  14.  
  15. def test_format(tmpdir):
  16. dev = util.device_1g(tmpdir)
  17. ret = util.run_bch('format', dev, valgrind=False)
  18.  
  19. > assert ret.returncode == 0
  20. E AssertionError: assert 1 == 0
  21. E + where 1 = CompletedProcess(args=['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath(...ce initialized: 0\n', stderr='error opening /tmp/pytest-of-alex/pytest-3/test_format0/dev-1g: Invalid argument\n').returncode
  22.  
  23. tests/test_basic.py:19: AssertionError
  24. --------------------------------------------------- Captured stdout call ---------------------------------------------------
  25. Running '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_format0/dev-1g')]'
  26. ________________________________________________________ test_fsck _________________________________________________________
  27.  
  28. tmpdir = local('/tmp/pytest-of-alex/pytest-3/test_fsck0')
  29.  
  30. def test_fsck(tmpdir):
  31. > dev = util.format_1g(tmpdir)
  32.  
  33. tests/test_basic.py:24:
  34. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  35. tests/util.py:92: in format_1g
  36. run_bch('format', dev, check=True)
  37. tests/util.py:71: in run_bch
  38. return run(*cmds, **kwargs)
  39. tests/util.py:63: in run
  40. res = subprocess.run(cmds, stdout=subprocess.PIPE,
  41. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  42.  
  43. input = None, capture_output = False, timeout = None, check = True
  44. popenargs = (['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_fsck0/dev-1g')],)
  45. kwargs = {'encoding': 'utf-8', 'stderr': -1, 'stdout': -1}
  46. process = <Popen: returncode: 1 args: ['/mnt/builds/ccached/simple-bcachefs-tools-git/...>
  47. stdout = 'External UUID: c9908721-7d1a-47fa-beec-cb4f56fa3fe9\nInternal UUID: f1c3f683-bdf5-4...e,user\n Has data: (none)\n Discard: 0\n Freespace initialized: 0\n'
  48. stderr = 'error opening /tmp/pytest-of-alex/pytest-3/test_fsck0/dev-1g: Invalid argument\n', retcode = 1
  49.  
  50. def run(*popenargs,
  51. input=None, capture_output=False, timeout=None, check=False, **kwargs):
  52. """Run command with arguments and return a CompletedProcess instance.
  53.  
  54. The returned instance will have attributes args, returncode, stdout and
  55. stderr. By default, stdout and stderr are not captured, and those attributes
  56. will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
  57.  
  58. If check is True and the exit code was non-zero, it raises a
  59. CalledProcessError. The CalledProcessError object will have the return code
  60. in the returncode attribute, and output & stderr attributes if those streams
  61. were captured.
  62.  
  63. If timeout is given, and the process takes too long, a TimeoutExpired
  64. exception will be raised.
  65.  
  66. There is an optional argument "input", allowing you to
  67. pass bytes or a string to the subprocess's stdin. If you use this argument
  68. you may not also use the Popen constructor's "stdin" argument, as
  69. it will be used internally.
  70.  
  71. By default, all communication is in bytes, and therefore any "input" should
  72. be bytes, and the stdout and stderr will be bytes. If in text mode, any
  73. "input" should be a string, and stdout and stderr will be strings decoded
  74. according to locale encoding, or by "encoding" if set. Text mode is
  75. triggered by setting any of text, encoding, errors or universal_newlines.
  76.  
  77. The other arguments are the same as for the Popen constructor.
  78. """
  79. if input is not None:
  80. if kwargs.get('stdin') is not None:
  81. raise ValueError('stdin and input arguments may not both be used.')
  82. kwargs['stdin'] = PIPE
  83.  
  84. if capture_output:
  85. if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
  86. raise ValueError('stdout and stderr arguments may not be used '
  87. 'with capture_output.')
  88. kwargs['stdout'] = PIPE
  89. kwargs['stderr'] = PIPE
  90.  
  91. with Popen(*popenargs, **kwargs) as process:
  92. try:
  93. stdout, stderr = process.communicate(input, timeout=timeout)
  94. except TimeoutExpired as exc:
  95. process.kill()
  96. if _mswindows:
  97. # Windows accumulates the output in a single blocking
  98. # read() call run on child threads, with the timeout
  99. # being done in a join() on those threads. communicate()
  100. # _after_ kill() is required to collect that and add it
  101. # to the exception.
  102. exc.stdout, exc.stderr = process.communicate()
  103. else:
  104. # POSIX _communicate already populated the output so
  105. # far into the TimeoutExpired exception.
  106. process.wait()
  107. raise
  108. except: # Including KeyboardInterrupt, communicate handled that.
  109. process.kill()
  110. # We don't call process.wait() as .__exit__ does that for us.
  111. raise
  112. retcode = process.poll()
  113. if check and retcode:
  114. > raise CalledProcessError(retcode, process.args,
  115. output=stdout, stderr=stderr)
  116. E subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_fsck0/dev-1g')]' returned non-zero exit status 1.
  117.  
  118. /usr/lib/python3.10/subprocess.py:524: CalledProcessError
  119. --------------------------------------------------- Captured stdout call ---------------------------------------------------
  120. Running '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_fsck0/dev-1g')]'
  121. ________________________________________________________ test_list _________________________________________________________
  122.  
  123. tmpdir = local('/tmp/pytest-of-alex/pytest-3/test_list0')
  124.  
  125. def test_list(tmpdir):
  126. > dev = util.format_1g(tmpdir)
  127.  
  128. tests/test_basic.py:33:
  129. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  130. tests/util.py:92: in format_1g
  131. run_bch('format', dev, check=True)
  132. tests/util.py:71: in run_bch
  133. return run(*cmds, **kwargs)
  134. tests/util.py:63: in run
  135. res = subprocess.run(cmds, stdout=subprocess.PIPE,
  136. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  137.  
  138. input = None, capture_output = False, timeout = None, check = True
  139. popenargs = (['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list0/dev-1g')],)
  140. kwargs = {'encoding': 'utf-8', 'stderr': -1, 'stdout': -1}
  141. process = <Popen: returncode: 1 args: ['/mnt/builds/ccached/simple-bcachefs-tools-git/...>
  142. stdout = 'External UUID: 525a6d19-afe8-4f94-9df4-9dc968daf267\nInternal UUID: 1b68d742-3e2c-4...e,user\n Has data: (none)\n Discard: 0\n Freespace initialized: 0\n'
  143. stderr = 'error opening /tmp/pytest-of-alex/pytest-3/test_list0/dev-1g: Invalid argument\n', retcode = 1
  144.  
  145. def run(*popenargs,
  146. input=None, capture_output=False, timeout=None, check=False, **kwargs):
  147. """Run command with arguments and return a CompletedProcess instance.
  148.  
  149. The returned instance will have attributes args, returncode, stdout and
  150. stderr. By default, stdout and stderr are not captured, and those attributes
  151. will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
  152.  
  153. If check is True and the exit code was non-zero, it raises a
  154. CalledProcessError. The CalledProcessError object will have the return code
  155. in the returncode attribute, and output & stderr attributes if those streams
  156. were captured.
  157.  
  158. If timeout is given, and the process takes too long, a TimeoutExpired
  159. exception will be raised.
  160.  
  161. There is an optional argument "input", allowing you to
  162. pass bytes or a string to the subprocess's stdin. If you use this argument
  163. you may not also use the Popen constructor's "stdin" argument, as
  164. it will be used internally.
  165.  
  166. By default, all communication is in bytes, and therefore any "input" should
  167. be bytes, and the stdout and stderr will be bytes. If in text mode, any
  168. "input" should be a string, and stdout and stderr will be strings decoded
  169. according to locale encoding, or by "encoding" if set. Text mode is
  170. triggered by setting any of text, encoding, errors or universal_newlines.
  171.  
  172. The other arguments are the same as for the Popen constructor.
  173. """
  174. if input is not None:
  175. if kwargs.get('stdin') is not None:
  176. raise ValueError('stdin and input arguments may not both be used.')
  177. kwargs['stdin'] = PIPE
  178.  
  179. if capture_output:
  180. if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
  181. raise ValueError('stdout and stderr arguments may not be used '
  182. 'with capture_output.')
  183. kwargs['stdout'] = PIPE
  184. kwargs['stderr'] = PIPE
  185.  
  186. with Popen(*popenargs, **kwargs) as process:
  187. try:
  188. stdout, stderr = process.communicate(input, timeout=timeout)
  189. except TimeoutExpired as exc:
  190. process.kill()
  191. if _mswindows:
  192. # Windows accumulates the output in a single blocking
  193. # read() call run on child threads, with the timeout
  194. # being done in a join() on those threads. communicate()
  195. # _after_ kill() is required to collect that and add it
  196. # to the exception.
  197. exc.stdout, exc.stderr = process.communicate()
  198. else:
  199. # POSIX _communicate already populated the output so
  200. # far into the TimeoutExpired exception.
  201. process.wait()
  202. raise
  203. except: # Including KeyboardInterrupt, communicate handled that.
  204. process.kill()
  205. # We don't call process.wait() as .__exit__ does that for us.
  206. raise
  207. retcode = process.poll()
  208. if check and retcode:
  209. > raise CalledProcessError(retcode, process.args,
  210. output=stdout, stderr=stderr)
  211. E subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list0/dev-1g')]' returned non-zero exit status 1.
  212.  
  213. /usr/lib/python3.10/subprocess.py:524: CalledProcessError
  214. --------------------------------------------------- Captured stdout call ---------------------------------------------------
  215. Running '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list0/dev-1g')]'
  216. _____________________________________________________ test_list_inodes _____________________________________________________
  217.  
  218. tmpdir = local('/tmp/pytest-of-alex/pytest-3/test_list_inodes0')
  219.  
  220. def test_list_inodes(tmpdir):
  221. > dev = util.format_1g(tmpdir)
  222.  
  223. tests/test_basic.py:42:
  224. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  225. tests/util.py:92: in format_1g
  226. run_bch('format', dev, check=True)
  227. tests/util.py:71: in run_bch
  228. return run(*cmds, **kwargs)
  229. tests/util.py:63: in run
  230. res = subprocess.run(cmds, stdout=subprocess.PIPE,
  231. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  232.  
  233. input = None, capture_output = False, timeout = None, check = True
  234. popenargs = (['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list_inodes0/dev-1g')],)
  235. kwargs = {'encoding': 'utf-8', 'stderr': -1, 'stdout': -1}
  236. process = <Popen: returncode: 1 args: ['/mnt/builds/ccached/simple-bcachefs-tools-git/...>
  237. stdout = 'External UUID: afb20bc3-bc5d-4fa5-ac21-75d19a17ec52\nInternal UUID: a4a2063e-2721-4...e,user\n Has data: (none)\n Discard: 0\n Freespace initialized: 0\n'
  238. stderr = 'error opening /tmp/pytest-of-alex/pytest-3/test_list_inodes0/dev-1g: Invalid argument\n', retcode = 1
  239.  
  240. def run(*popenargs,
  241. input=None, capture_output=False, timeout=None, check=False, **kwargs):
  242. """Run command with arguments and return a CompletedProcess instance.
  243.  
  244. The returned instance will have attributes args, returncode, stdout and
  245. stderr. By default, stdout and stderr are not captured, and those attributes
  246. will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
  247.  
  248. If check is True and the exit code was non-zero, it raises a
  249. CalledProcessError. The CalledProcessError object will have the return code
  250. in the returncode attribute, and output & stderr attributes if those streams
  251. were captured.
  252.  
  253. If timeout is given, and the process takes too long, a TimeoutExpired
  254. exception will be raised.
  255.  
  256. There is an optional argument "input", allowing you to
  257. pass bytes or a string to the subprocess's stdin. If you use this argument
  258. you may not also use the Popen constructor's "stdin" argument, as
  259. it will be used internally.
  260.  
  261. By default, all communication is in bytes, and therefore any "input" should
  262. be bytes, and the stdout and stderr will be bytes. If in text mode, any
  263. "input" should be a string, and stdout and stderr will be strings decoded
  264. according to locale encoding, or by "encoding" if set. Text mode is
  265. triggered by setting any of text, encoding, errors or universal_newlines.
  266.  
  267. The other arguments are the same as for the Popen constructor.
  268. """
  269. if input is not None:
  270. if kwargs.get('stdin') is not None:
  271. raise ValueError('stdin and input arguments may not both be used.')
  272. kwargs['stdin'] = PIPE
  273.  
  274. if capture_output:
  275. if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
  276. raise ValueError('stdout and stderr arguments may not be used '
  277. 'with capture_output.')
  278. kwargs['stdout'] = PIPE
  279. kwargs['stderr'] = PIPE
  280.  
  281. with Popen(*popenargs, **kwargs) as process:
  282. try:
  283. stdout, stderr = process.communicate(input, timeout=timeout)
  284. except TimeoutExpired as exc:
  285. process.kill()
  286. if _mswindows:
  287. # Windows accumulates the output in a single blocking
  288. # read() call run on child threads, with the timeout
  289. # being done in a join() on those threads. communicate()
  290. # _after_ kill() is required to collect that and add it
  291. # to the exception.
  292. exc.stdout, exc.stderr = process.communicate()
  293. else:
  294. # POSIX _communicate already populated the output so
  295. # far into the TimeoutExpired exception.
  296. process.wait()
  297. raise
  298. except: # Including KeyboardInterrupt, communicate handled that.
  299. process.kill()
  300. # We don't call process.wait() as .__exit__ does that for us.
  301. raise
  302. retcode = process.poll()
  303. if check and retcode:
  304. > raise CalledProcessError(retcode, process.args,
  305. output=stdout, stderr=stderr)
  306. E subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list_inodes0/dev-1g')]' returned non-zero exit status 1.
  307.  
  308. /usr/lib/python3.10/subprocess.py:524: CalledProcessError
  309. --------------------------------------------------- Captured stdout call ---------------------------------------------------
  310. Running '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list_inodes0/dev-1g')]'
  311. _____________________________________________________ test_list_dirent _____________________________________________________
  312.  
  313. tmpdir = local('/tmp/pytest-of-alex/pytest-3/test_list_dirent0')
  314.  
  315. def test_list_dirent(tmpdir):
  316. > dev = util.format_1g(tmpdir)
  317.  
  318. tests/test_basic.py:51:
  319. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  320. tests/util.py:92: in format_1g
  321. run_bch('format', dev, check=True)
  322. tests/util.py:71: in run_bch
  323. return run(*cmds, **kwargs)
  324. tests/util.py:63: in run
  325. res = subprocess.run(cmds, stdout=subprocess.PIPE,
  326. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  327.  
  328. input = None, capture_output = False, timeout = None, check = True
  329. popenargs = (['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list_dirent0/dev-1g')],)
  330. kwargs = {'encoding': 'utf-8', 'stderr': -1, 'stdout': -1}
  331. process = <Popen: returncode: 1 args: ['/mnt/builds/ccached/simple-bcachefs-tools-git/...>
  332. stdout = 'External UUID: 82cd9184-33b2-46e0-872a-562c0748a4e2\nInternal UUID: 3bb6f649-2acb-4...e,user\n Has data: (none)\n Discard: 0\n Freespace initialized: 0\n'
  333. stderr = 'error opening /tmp/pytest-of-alex/pytest-3/test_list_dirent0/dev-1g: Invalid argument\n', retcode = 1
  334.  
  335. def run(*popenargs,
  336. input=None, capture_output=False, timeout=None, check=False, **kwargs):
  337. """Run command with arguments and return a CompletedProcess instance.
  338.  
  339. The returned instance will have attributes args, returncode, stdout and
  340. stderr. By default, stdout and stderr are not captured, and those attributes
  341. will be None. Pass stdout=PIPE and/or stderr=PIPE in order to capture them.
  342.  
  343. If check is True and the exit code was non-zero, it raises a
  344. CalledProcessError. The CalledProcessError object will have the return code
  345. in the returncode attribute, and output & stderr attributes if those streams
  346. were captured.
  347.  
  348. If timeout is given, and the process takes too long, a TimeoutExpired
  349. exception will be raised.
  350.  
  351. There is an optional argument "input", allowing you to
  352. pass bytes or a string to the subprocess's stdin. If you use this argument
  353. you may not also use the Popen constructor's "stdin" argument, as
  354. it will be used internally.
  355.  
  356. By default, all communication is in bytes, and therefore any "input" should
  357. be bytes, and the stdout and stderr will be bytes. If in text mode, any
  358. "input" should be a string, and stdout and stderr will be strings decoded
  359. according to locale encoding, or by "encoding" if set. Text mode is
  360. triggered by setting any of text, encoding, errors or universal_newlines.
  361.  
  362. The other arguments are the same as for the Popen constructor.
  363. """
  364. if input is not None:
  365. if kwargs.get('stdin') is not None:
  366. raise ValueError('stdin and input arguments may not both be used.')
  367. kwargs['stdin'] = PIPE
  368.  
  369. if capture_output:
  370. if kwargs.get('stdout') is not None or kwargs.get('stderr') is not None:
  371. raise ValueError('stdout and stderr arguments may not be used '
  372. 'with capture_output.')
  373. kwargs['stdout'] = PIPE
  374. kwargs['stderr'] = PIPE
  375.  
  376. with Popen(*popenargs, **kwargs) as process:
  377. try:
  378. stdout, stderr = process.communicate(input, timeout=timeout)
  379. except TimeoutExpired as exc:
  380. process.kill()
  381. if _mswindows:
  382. # Windows accumulates the output in a single blocking
  383. # read() call run on child threads, with the timeout
  384. # being done in a join() on those threads. communicate()
  385. # _after_ kill() is required to collect that and add it
  386. # to the exception.
  387. exc.stdout, exc.stderr = process.communicate()
  388. else:
  389. # POSIX _communicate already populated the output so
  390. # far into the TimeoutExpired exception.
  391. process.wait()
  392. raise
  393. except: # Including KeyboardInterrupt, communicate handled that.
  394. process.kill()
  395. # We don't call process.wait() as .__exit__ does that for us.
  396. raise
  397. retcode = process.poll()
  398. if check and retcode:
  399. > raise CalledProcessError(retcode, process.args,
  400. output=stdout, stderr=stderr)
  401. E subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list_dirent0/dev-1g')]' returned non-zero exit status 1.
  402.  
  403. /usr/lib/python3.10/subprocess.py:524: CalledProcessError
  404. --------------------------------------------------- Captured stdout call ---------------------------------------------------
  405. Running '['/mnt/builds/ccached/simple-bcachefs-tools-git/1/bcachefs-tools/bcachefs', 'format', PosixPath('/tmp/pytest-of-alex/pytest-3/test_list_dirent0/dev-1g')]'
  406. ================================================= short test summary info ==================================================
  407. FAILED tests/test_basic.py::test_format - AssertionError: assert 1 == 0
  408. FAILED tests/test_basic.py::test_fsck - subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcachefs-too...
  409. FAILED tests/test_basic.py::test_list - subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcachefs-too...
  410. FAILED tests/test_basic.py::test_list_inodes - subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcach...
  411. FAILED tests/test_basic.py::test_list_dirent - subprocess.CalledProcessError: Command '['/mnt/builds/ccached/simple-bcach...
  412. ========================================= 5 failed, 7 passed, 16 skipped in 1.49s ==========================================
  413. make: *** [Makefile:90: check] Error 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement