pocmatos
2017-11-10 09:13:19

Does anyone know where the quickcheck pkg source is?


pocmatos
2017-11-10 09:13:31

Can’t seem to find a link to it from the docs.


samth
2017-11-10 13:26:34

@pocmatos if you go here https://pkgs.racket-lang.org/package/quickcheck there’s a link to the source


mflatt
2017-11-10 13:50:39

@samth Thanks! That error is good news, and I’ll try to adapt “file.rktl”


samth
2017-11-10 13:53:12

also, note for the future: the .travis.yml syntax doesn’t understand that a # inside " ... " shouldn’t start a new comment :disappointed:


samth
2017-11-10 15:33:35

@mflatt your repair has fixed the travis issue


notjack
2017-11-10 18:31:41

@samth it looks like the Typed Racket tests run in the gui test script includes some tests that depend on ext flonums, and those tests fail on the 32-bit builds (racket-i386 and racket-i386-minimal)


notjack
2017-11-10 18:32:56

I think adding code to those tests to recognize when they’re being run on 32-bit racket and skipping those tests would be appropriate


samth
2017-11-10 18:42:24

I think they should just test if extflonums are available explicitly


notjack
2017-11-10 21:47:36

that does sound better