Robby Findler
77a1b55c32
hide the testing of the close parens with an edit-sequence
2013-04-02 21:26:43 -05:00
Robby Findler
944602440c
add response/output
2013-04-02 21:26:32 -05:00
Vincent St-Amour
ffc90239d0
Fix test for new complex division.
2013-04-02 17:32:29 -04:00
Tony Garnock-Jones
c5df74f662
Show the offending value when a TR-introduced Any contract fails
2013-04-02 16:29:11 -04:00
Tony Garnock-Jones
f2616b934c
Avoid stripping location information from syntax object in warning message.
2013-04-02 16:29:11 -04:00
Vincent St-Amour
b808d2809e
Fix optimization on exp of complex numbers.
...
Found using random testing.
2013-04-02 16:29:11 -04:00
Vincent St-Amour
8948388ec5
Fix another unsafe optimization of unsafe-fxmodulo.
...
Found using random testing.
2013-04-02 16:29:10 -04:00
Vincent St-Amour
f66ee7088f
Fix type of tanh.
...
Found using random testing.
2013-04-02 16:29:10 -04:00
Vincent St-Amour
ed12b64bf7
Fix type of sinh.
...
Found using random testing.
2013-04-02 16:29:09 -04:00
Vincent St-Amour
51c94e26d3
Increase timeout for TR random tester.
2013-04-02 16:29:09 -04:00
Vincent St-Amour
6e10dd6a4d
Imitate untyped division more closely.
...
Found using random testing.
2013-04-02 16:29:08 -04:00
Vincent St-Amour
5f9bcbca49
Abstract unboxing of complex division.
2013-04-02 16:29:08 -04:00
Vincent St-Amour
ca63915693
Fix coercions from single-floats to floats.
...
Found using random testing.
2013-04-02 16:29:07 -04:00
Vincent St-Amour
77b89fab99
Reimplement unboxing of complex division.
...
Add special cases to be consistent with untyped Racket.
Found using random testing.
2013-04-02 16:29:06 -04:00
Matthew Flatt
8c89451fbb
configure: libffi after pthread
...
On OpenBSD, for example, the libffi link test doesn't work until
"-pthread" is in $LIBS.
Also, make `configure' complain if `--enable-libffi' is specified
and linking to libffi fails.
2013-04-02 06:06:56 -06:00
Eric Dobson
3d49087ea3
Fix parsing of dotted rest when there is an expected type.
...
Closes PR 13646.
2013-04-01 22:17:32 -07:00
Robby Findler
5669c372b2
fix a docs bug
...
(and change a case-lambda to a regular lambda)
2013-04-01 22:39:22 -05:00
Robby Findler
5a85af78ac
add contracts to the "with-" macros in redex/pict
2013-04-01 22:39:21 -05:00
Vincent St-Amour
c8c6341970
Simplify type.
2013-04-01 14:44:32 -04:00
Vincent St-Amour
92c4c70e7a
Fix type of lcm.
...
Found using random testing.
2013-04-01 14:44:32 -04:00
Vincent St-Amour
70a8b79d0e
Re-enable testing of hyperbolic trigonometry functions.
2013-04-01 14:44:31 -04:00
Vincent St-Amour
990fa87a2e
Add random testing for complexes.
...
Fix a bug it found.
2013-04-01 14:44:31 -04:00
Vincent St-Amour
ca2e6bd769
Sometimes generate random integers.
2013-04-01 14:44:31 -04:00
Vincent St-Amour
3e9595e910
Factor out grammar to generate well-typed terms with higher probability.
...
Allows us to test integer-specific functions.
2013-04-01 14:44:31 -04:00
Vincent St-Amour
f7e8b090e6
Fix types of bitwise-and and bitwise-xor.
...
Found with random testing.
2013-04-01 14:44:31 -04:00
Matthias Felleisen
ab663b4833
bring code to old state, make consistent with docs, Closes PR 13642 again
2013-04-01 12:10:27 -04:00
Matthew Flatt
b78982fe6a
racket/cmdline: fix problem with arity checking
...
Extra normalization due to 59b1e32fe9
exposed the bug.
2013-03-31 20:29:23 -06:00
Eric Dobson
5d8f470e0b
Remove dependency on GUI libraries.
2013-03-31 11:43:08 -07:00
Eric Dobson
eeeceedb8c
Reimplement for*/list: in TR so that it works.
...
Closes PR 13253.
2013-03-31 10:40:21 -07:00
Eric Dobson
b637c24d88
Improve type of expt since inference is bad.
...
Closes PR 13383.
2013-03-31 10:39:36 -07:00
Eric Dobson
ecec724747
Add testcase for sibling modules.
...
Closes PR 13155.
2013-03-31 10:39:16 -07:00
Carl Eastlund
df00bbb194
Updated contracts for arity-related functions.
...
Added contract checking to arity=?, arity-includes?, and normalized-arity.
Removed contract checking from normalize-arity to make it a total predicate.
Updated documentation for normalize-arity to reflect this change.
2013-03-31 13:36:07 -04:00
Carl Eastlund
f509420662
Removed unnecessary duplication of normalize-arity.
2013-03-31 13:36:06 -04:00
Carl Eastlund
aaa99d565d
Documented normalized-arity?, arity=?, and arity-includes?.
2013-03-31 13:36:06 -04:00
Carl Eastlund
636f8a91dc
Moved normalized-arity?, arity=?, and arity-includes? into racket/function.
2013-03-31 13:36:06 -04:00
Carl Eastlund
4dd011aa09
Added documentation for normalize-arity.
2013-03-31 13:36:05 -04:00
Carl Eastlund
e356c660ea
Re-provide normalize-arity from racket/function.
2013-03-31 13:36:05 -04:00
Carl Eastlund
59b1e32fe9
Changed normalize-arity to coalesce arity-at-least with adjacent numbers.
...
For instance, (normalize-arity (list 1 (arity-at-least 2))) now produces
(arity-at-least 1). The implementation and the tests for normalize-arity both
reflect this change. The randomized tests now also check that the output
represents the same arity as the input.
2013-03-31 13:36:05 -04:00
Matthew Flatt
6e40caa7e2
ffi/com: repairs, including `mysterx' compatibility
...
Restore MysterX-style handling of parameterzied properties in
`com-get-property'. It turns out that the original `com-get-property'
handles parameterized properties by allowing a list in place of a
property-name string, and that handling got lost in the re-write.
Fix the name of `com-get-active-from-from-coclass'.
Fix arity checking for optional arguments.
Closes PR 13603
Closes PR 13604
2013-03-31 11:12:45 -06:00
Matthew Flatt
2412611c07
file/untgz: allow extra bytes after tar content
...
Closes PR 13641
Closes PR 13644
2013-03-31 07:29:06 -06:00
Matthew Flatt
e93f977603
file/untar: handle unknown extensions by skipping
...
Also, add/improve logging.
2013-03-31 06:59:12 -06:00
Matthew Flatt
bfc9c41358
racket/gui: double-check size on attmpt to set editor scroll
...
A scroll request could fail if a resize notification is still
in flight (i.e., queued but not yet executed), so double-check
the size on a scroll request.
Closes PR 13582
2013-03-31 06:39:49 -06:00
Matthew Flatt
0a482b6159
raco setup: fix doc dependency check for PLTCOMPILEDROOTS
...
A doc build depends on its source's ".zo" file, which might
not be next to the source due to a PLTCOMPILEDROOTS setting.
Closes PR 13640
2013-03-30 17:28:25 -06:00
Matthias Felleisen
1ff3e3b942
fixed rate argument for run-movie, Closes PR13642
2013-03-30 18:07:00 -04:00
Carl Eastlund
68f526c2ed
source-location-known? should not rely on "span" field
2013-03-30 16:17:27 -04:00
Matthew Flatt
9efb14e434
system-type: fix 'so-mode
2013-03-30 14:13:02 -06:00
Matthew Flatt
a1dccb4aa8
repairs for MinGW builds
...
The changes make extflonums work when compiling with SSE arithmetic
for `double's.
2013-03-30 10:55:59 -06:00
Ryan Culpepper
bace16a4ce
added test for sequence syntax with keywords
2013-03-30 10:00:44 -04:00
Ryan Culpepper
d71cc04c22
fix show-dependencies handling of submodules
2013-03-30 10:00:44 -04:00
Ryan Culpepper
3dfab4d0aa
factor out create-ehpat code
2013-03-30 10:00:44 -04:00