jemc changed the topic of #ponylang to: Welcome! Please check out our Code of Conduct => https://github.com/ponylang/ponyc/blob/master/CODE_OF_CONDUCT.md | Public IRC logs are available => http://irclog.whitequark.org/ponylang | Please consider participating in our mailing lists => https://pony.groups.io/g/pony
atk has quit [Quit: Well this is unexpected.]
atk has joined #ponylang
bpicolo has joined #ponylang
aturley has quit [Ping timeout: 260 seconds]
acarrico has quit [Ping timeout: 240 seconds]
acarrico has joined #ponylang
dipin has quit [Quit: dipin]
aturley has joined #ponylang
bpicolo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
acarrico has quit [Ping timeout: 260 seconds]
acarrico has joined #ponylang
aturley has quit [Quit: aturley]
martinium has quit [Quit: WeeChat 1.9.1]
martinium has joined #ponylang
dipin has joined #ponylang
acarrico has quit [Ping timeout: 240 seconds]
gokr has quit [Ping timeout: 246 seconds]
_whitelogger has joined #ponylang
dipin has quit [Quit: dipin]
martinium has quit [Quit: WeeChat 1.9.1]
martinium has joined #ponylang
endformationage has quit [Quit: WeeChat 1.9.1]
kempe has quit [Ping timeout: 248 seconds]
kempe has joined #ponylang
jemc has quit [Ping timeout: 248 seconds]
jemc has joined #ponylang
jemc has quit [Ping timeout: 240 seconds]
oraoto has joined #ponylang
jzlhctoxmn has joined #ponylang
jzlhctoxmn has quit [Remote host closed the connection]
yxqgdmwsty has joined #ponylang
yxqgdmwsty has quit [Remote host closed the connection]
samuell has joined #ponylang
gokr has joined #ponylang
samuell has quit [Ping timeout: 255 seconds]
samuell has joined #ponylang
_andre has joined #ponylang
rurban has joined #ponylang
bimawa has joined #ponylang
oraoto_ has joined #ponylang
oraoto__ has joined #ponylang
oraoto has quit [Ping timeout: 260 seconds]
oraoto__ has quit [Client Quit]
oraoto_ has quit [Client Quit]
enilsen16 has joined #ponylang
rurban has quit [Quit: Leaving.]
martinium has quit [Quit: WeeChat 1.9.1]
rurban has joined #ponylang
rurban has quit [Client Quit]
enilsen16 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
gokr has quit [Ping timeout: 260 seconds]
enilsen16 has joined #ponylang
dipin has joined #ponylang
enilsen16 has quit [Quit: Textual IRC Client: www.textualapp.com]
jemc has joined #ponylang
TheMouster has joined #ponylang
<TheMouster> Quick, simple, question, if I want to create a string of size x and my input is a U8 how do I coerce it into a USize?
<TheMouster> OK. I think I resolved that one. U8.usize().
<SeanTAllen> that is indeed the correct solution TheMouster
trevorriles has joined #ponylang
jemc has quit [Quit: WeeChat 1.9]
bpicolo has joined #ponylang
bpicolo has quit [Client Quit]
TheMouster has quit [Ping timeout: 260 seconds]
martinium has joined #ponylang
gokr has joined #ponylang
bpicolo has joined #ponylang
<bpicolo> Should (try,end) blocks catch test assertions?
<bpicolo> https://gist.github.com/bpicolo/76725381931f8c19ce3f43a5b45397bf this test currently passes no matter what the rhs of the assert_eq is
<bpicolo> (I tried a version avoiding try, end and it passed as well)
<bpicolo> it seems the assertion should run, as if I put a print statement there, that runs
<bpicolo> it also succeeds whether I .complete_action or not
<bpicolo> `Indicate that this is a long running test that may continue after the test function exits.`
<bpicolo> oh, perhaps I need that?
<bpicolo> yuuup.
<bpicolo> a combined expect_action/long_test would be handy
nisanharamati has joined #ponylang
jemc has joined #ponylang
acarrico has joined #ponylang
gokr has quit [Ping timeout: 264 seconds]
bpicolo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
enilsen16 has joined #ponylang
dougmacdoug has joined #ponylang
dougmacdoug has left #ponylang [#ponylang]
enilsen16 has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
trevorriles has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
martinium has quit [Quit: WeeChat 1.9.1]
endformationage has joined #ponylang
bpicolo has joined #ponylang
samuell has quit [Quit: Leaving]
trevorriles has joined #ponylang
user10032 has joined #ponylang
<bpicolo> Is it possible to inspect foo' in lldb?
<bpicolo> (lldb) p ps'
<bpicolo> error: warning: missing terminating ' character
<bpicolo> hm
<bpicolo> nah that's not right, that's the pointer
<bpicolo> not the value
<bpicolo> Great, got to the real root of the problem. Promise.join() very different from Promises.join()
<bpicolo> >.>
trevorriles has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
trevorriles has joined #ponylang
<SeanTAllen> bpicolo: did you figure out your test issue?
<SeanTAllen> expect_action only works in conjunction with long tests. you didnt set up a long test so it doesn't do anything.
<bpicolo> @SeanTAllen from 11 AM? Sorta. I needed a long_test annotation in order for the test to wait long enough for things to complete.
<SeanTAllen> that exists
<bpicolo> right
<bpicolo> I would have expected expect_action to fail though, considering I never called complete_action before the test ended
<bpicolo> It's kind of strange that forgetting long_test would lead to a silent success
<bpicolo> when you've declared an expect_action
<SeanTAllen> the expectation is that for a non-long test, you would call fail it your criteria weren't meant.
<bpicolo> Hm?
<SeanTAllen> h.fail()
<SeanTAllen> or non-long tests
<bpicolo> oh, sure, but there were no errors of any sort using expect_action, so would have been good to have some failure for "you used expect_action but didnt use long_test"
<SeanTAllen> if you don't get your criteria for your test, you can call `fail` on the test helper to fail the test
<bpicolo> I didn't even know I needed to look for long_Test
<SeanTAllen> updates to the documentation would be welcomed
<SeanTAllen> did you figure out your lldb issue?
<bpicolo> I didn't figure it out, but it became unnecessary for me to work out
<bpicolo> the foo' naming convention seemed to conflict with lldb's expection that ' begins a string
<bpicolo> There might be some way to escape it though?
<bpicolo> `frame variable ps'` worked, but `p ps'` did not
<SeanTAllen> lldb is a bit of a weird beast
<bpicolo> heh, yeah
<bpicolo> I have not had to use it much, so this could easily come down to me missing a perfectly fine way to use it
<bpicolo> @SeanTAllen either way, thanks for checking over my questions from earlier
<SeanTAllen> you're welcome
masteinhauser has left #ponylang [#ponylang]
jemc has quit [Ping timeout: 246 seconds]
jemc has joined #ponylang
user10032 has quit [Remote host closed the connection]
user10032 has joined #ponylang
theodus has joined #ponylang
theodus has quit [Ping timeout: 248 seconds]
samuell has joined #ponylang
gokr has joined #ponylang
gokr has quit [Ping timeout: 240 seconds]
gokr has joined #ponylang
bpicolo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
trevorriles has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
samuell has quit [Quit: Leaving]
bpicolo has joined #ponylang
user10032 has quit [Quit: Leaving]
dipin has quit [Quit: dipin]
bpicolo has quit [Quit: My MacBook has gone to sleep. ZZZzzz…]
wizeman has joined #ponylang