Guest User

Untitled

a guest
Jan 18th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. ...
  2.  
  3. 1) test closes old log file after path has been changed (LoggerFileBackendTest)
  4. test/logger_file_backend_test.exs:142
  5. ** (ExUnit.TimeoutError) test timed out after 60000ms. You can change the timeout:
  6.  
  7. 1. per test by setting "@tag timeout: x"
  8. 2. per case by setting "@moduletag timeout: x"
  9. 3. globally via "ExUnit.start(timeout: x)" configuration
  10. 4. or set it to infinity per run by calling "mix test --trace"
  11. (useful when using IEx.pry/0)
  12.  
  13. Timeouts are given as integers in milliseconds.
  14.  
  15. code: refute has_open(org_path)
  16. stacktrace:
  17. (elixir) lib/system.ex:652: System.do_cmd/3
  18. (elixir) lib/system.ex:641: System.cmd/3
  19. test/logger_file_backend_test.exs:215: LoggerFileBackendTest.has_open/2
  20. test/logger_file_backend_test.exs:151: (test)
  21. (ex_unit) lib/ex_unit/runner.ex:355: ExUnit.Runner.exec_test/1
  22. (stdlib) timer.erl:166: :timer.tc/1
  23. (ex_unit) lib/ex_unit/runner.ex:306: anonymous fn/4 in ExUnit.Runner.spawn_test_monitor/4
  24.  
  25. ........
  26.  
  27. 2) test prunes invalid utf-8 codepoints (LoggerFileBackendTest)
  28. test/logger_file_backend_test.exs:74
  29. Assertion with =~ failed
  30. code: assert log() =~ "hiÔøΩ"
  31. left: "pid=<0.215.0> line=75 function=test prunes invalid utf-8 codepoints/1 module=LoggerFileBackendTest file=.../logger_file_backend/test/logger_file_backend_test.exs "
  32. right: "hiÔøΩ"
  33. stacktrace:
  34. test/logger_file_backend_test.exs:76: (test)
  35.  
  36. ...q
  37.  
  38. 3) test closes old log file after log file has been moved (LoggerFileBackendTest)
  39. test/logger_file_backend_test.exs:127
  40. ** (ExUnit.TimeoutError) test timed out after 60000ms. You can change the timeout:
  41.  
  42. 1. per test by setting "@tag timeout: x"
  43. 2. per case by setting "@moduletag timeout: x"
  44. 3. globally via "ExUnit.start(timeout: x)" configuration
  45. 4. or set it to infinity per run by calling "mix test --trace"
  46. (useful when using IEx.pry/0)
  47.  
  48. Timeouts are given as integers in milliseconds.
  49.  
  50. code: assert has_open(path())
  51. stacktrace:
  52. (elixir) lib/system.ex:652: System.do_cmd/3
  53. (elixir) lib/system.ex:641: System.cmd/3
  54. test/logger_file_backend_test.exs:215: LoggerFileBackendTest.has_open/2
  55. test/logger_file_backend_test.exs:138: (test)
  56. (ex_unit) lib/ex_unit/runner.ex:355: ExUnit.Runner.exec_test/1
  57. (stdlib) timer.erl:166: :timer.tc/1
  58. (ex_unit) lib/ex_unit/runner.ex:306: anonymous fn/4 in ExUnit.Runner.spawn_test_monitor/4
  59.  
  60.  
  61.  
  62. Finished in 120.2 seconds
  63. 17 tests, 3 failures
Add Comment
Please, Sign In to add comment