Re: [tor-bugs] #25791 [Core Tor/Tor]: test_util_fgets_eagain fails on FreeBSD 0.2.9

2019-05-28 Thread Tor Bug Tracker & Wiki
#25791: test_util_fgets_eagain fails on FreeBSD 0.2.9
-+-
 Reporter:  mikeperry|  Owner:  (none)
 Type:  defect   | Status:  closed
 Priority:  Medium   |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:  Tor:
 |  0.2.9.14
 Severity:  Normal   | Resolution:  wontfix
 Keywords:  jenkins, regression, ci-fail, tor-   |  Actual Points:
  ci-fail|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by mikeperry):

 * status:  new => closed
 * resolution:   => wontfix


Comment:

 This is an ancient CI-specific bug that only applies to 0.2.9, and the fix
 is not simple.

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #25791 [Core Tor/Tor]: test_util_fgets_eagain fails on FreeBSD 0.2.9

2019-05-22 Thread Tor Bug Tracker & Wiki
#25791: test_util_fgets_eagain fails on FreeBSD 0.2.9
-+-
 Reporter:  mikeperry|  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:  Tor:
 |  unspecified
Component:  Core Tor/Tor |Version:  Tor:
 |  0.2.9.14
 Severity:  Normal   | Resolution:
 Keywords:  jenkins, regression, ci-fail, tor-   |  Actual Points:
  ci-fail|
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+-
Changes (by mikeperry):

 * keywords:  jenkins, regression, ci-fail => jenkins, regression, ci-fail,
 tor-ci-fail


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #25791 [Core Tor/Tor]: test_util_fgets_eagain fails on FreeBSD 0.2.9

2019-05-22 Thread Tor Bug Tracker & Wiki
#25791: test_util_fgets_eagain fails on FreeBSD 0.2.9
--+
 Reporter:  mikeperry |  Owner:  (none)
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor:
  |  unspecified
Component:  Core Tor/Tor  |Version:  Tor: 0.2.9.14
 Severity:  Normal| Resolution:
 Keywords:  jenkins, regression, ci-fail  |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by mikeperry):

 * keywords:  jenkins, regression => jenkins, regression, ci-fail


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #25791 [Core Tor/Tor]: test_util_fgets_eagain fails on FreeBSD 0.2.9

2018-06-02 Thread Tor Bug Tracker & Wiki
#25791: test_util_fgets_eagain fails on FreeBSD 0.2.9
-+--
 Reporter:  mikeperry|  Owner:  (none)
 Type:  defect   | Status:  new
 Priority:  Medium   |  Milestone:  Tor: unspecified
Component:  Core Tor/Tor |Version:  Tor: 0.2.9.14
 Severity:  Normal   | Resolution:
 Keywords:  jenkins, regression  |  Actual Points:
Parent ID:   | Points:
 Reviewer:   |Sponsor:
-+--
Changes (by teor):

 * keywords:  jenkins => jenkins, regression
 * version:   => Tor: 0.2.9.14
 * milestone:  Tor: 0.2.9.x-final => Tor: unspecified


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

Re: [tor-bugs] #25791 [Core Tor/Tor]: test_util_fgets_eagain fails on FreeBSD 0.2.9

2018-04-16 Thread Tor Bug Tracker & Wiki
#25791: test_util_fgets_eagain fails on FreeBSD 0.2.9
--+
 Reporter:  mikeperry |  Owner:  (none)
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal| Resolution:
 Keywords:  jenkins   |  Actual Points:
Parent ID:| Points:
 Reviewer:|Sponsor:
--+
Changes (by mikeperry):

 * keywords:   => jenkins


--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs

[tor-bugs] #25791 [Core Tor/Tor]: test_util_fgets_eagain fails on FreeBSD 0.2.9

2018-04-12 Thread Tor Bug Tracker & Wiki
#25791: test_util_fgets_eagain fails on FreeBSD 0.2.9
--+
 Reporter:  mikeperry |  Owner:  (none)
 Type:  defect| Status:  new
 Priority:  Medium|  Milestone:  Tor: 0.2.9.x-final
Component:  Core Tor/Tor  |Version:
 Severity:  Normal|   Keywords:
Actual Points:|  Parent ID:
   Points:|   Reviewer:
  Sponsor:|
--+
 It looks like on FreeBSD, this test is failing because fgets is returning
 NULL upon EAGAIN:
 https://jenkins.torproject.org/view/Failed+Unstable/job/tor-ci-freebsd-
 amd64-0.2.9/33/consoleFull


 {{{
 09:31:49 util/fgets_eagain:
 09:31:49   FAIL ../tor/src/test/test_util.c:3963: assert(retptr OP_EQ
 buf): 0x0 vs 0x7fffe404
 }}}

 That test block is:
 {{{
   /* Send in a partial line */
   retlen = write(test_pipe[1], "A", 1);
   tt_int_op(retlen, OP_EQ, 1);
   retptr = fgets(buf, sizeof(buf), test_stream);
   tt_int_op(errno, OP_EQ, EAGAIN);
   tt_ptr_op(retptr, OP_EQ, buf);
   tt_str_op(buf, OP_EQ, "A");
   errno = 0;
 }}}

 This test appears absent on 0.3.3 now. I'm not sure what this failure
 means here. Is FreeBSD just different, or is this an actual issue?

--
Ticket URL: 
Tor Bug Tracker & Wiki 
The Tor Project: anonymity online
___
tor-bugs mailing list
tor-bugs@lists.torproject.org
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-bugs