about summary refs log tree commit diff
path: root/src/Makefile
AgeCommit message (Collapse)AuthorLines
2011-01-27Handle paths correctly. This lets us handle one more test :-)Rafael Ávila de Espíndola-0/+1
2011-01-26Slight makefile refactoring.Graydon Hoare-7/+8
2011-01-26Fix test now that we look at the full error-pattern. Also enable it for rustc.Rafael Ávila de Espíndola-0/+1
2011-01-26Fix issue 207 by considering everything after the first : in the error-patternRafael Ávila de Espíndola-5/+4
line.
2011-01-25Print an error if we try to refer to a module in an expr_path.Rafael Ávila de Espíndola-0/+1
2011-01-25Small first step in expr_path. Call find_final_def just to detectRafael Ávila de Espíndola-0/+2
unresolved names. find_final_def is going to be extended to return the final expr.
2011-01-24Un-XFAIL a couple more rustc tests that have started working recently.Graydon Hoare-0/+2
2011-01-24Implement autoderef in rustc. Un-XFAIL autoderef-full-lval.rs.Graydon Hoare-0/+1
2011-01-24Remove unimplemented erorr and enable test.Rafael Ávila de Espíndola-0/+1
2011-01-24Implement a bit of type parameter matching to get a simple case working.Rafael Ávila de Espíndola-0/+1
2011-01-21Re-XFAIL integral-indexing.rs. Seems OSX and linux still don't like it.Graydon Hoare-1/+0
2011-01-21Un-XFAIL 7 tests that have begun working on rustc lately. Fix one bug in ↵Graydon Hoare-0/+7
mlist.rs.
2011-01-21First cut at translating const items. Support the literal forms at least. ↵Graydon Hoare-0/+1
Un-XFAIL const.rs.
2011-01-21Fix bug in trans_for, un-XFAIL linear-for-loop.rs.Graydon Hoare-0/+1
2011-01-19Implement dynamic GEP enough to permit expr_field to work on tup(T,T,T).Graydon Hoare-0/+2
2011-01-19Look at the type params of an item_ty when resolving.Rafael Ávila de Espíndola-0/+1
2011-01-18Change generic-drop-glue.rs to be meaningful again, and un-XFAIL on rustc.Graydon Hoare-0/+1
2011-01-17Make legal and un-XFAIL generic-fn-infer.rs (on both compilers).Graydon Hoare-1/+1
2011-01-17Enable more tests.Rafael Ávila de Espíndola-0/+2
2011-01-17Fix the last known (to me) bug in import resolution. We were not properlyRafael Ávila de Espíndola-0/+1
dropping the inner part of the environment when an intermediate item resolved in an outer scope.
2011-01-14Fix the import handling in "complex" cases. When looking a.b.c and 'a' is aRafael Ávila de Espíndola-0/+1
module, we should look for 'b' *just* in the module 'a' and then continue resolving b.c in the environment created by updating *with* a. Still not 100% correct, but getting there.
2011-01-14Make lookup non recursive and instead move the recursion just toRafael Ávila de Espíndola-0/+2
find_final_def. Use the fact that the recursion is in a simpler function to detected import loops and exit.
2011-01-13Add or enable some tests.Rafael Ávila de Espíndola-0/+2
2011-01-12Produce better errors for invalid imports.Rafael Ávila de Espíndola-0/+1
2011-01-11Fix another import case we got wrong: The local environment should notRafael Ávila de Espíndola-0/+1
interfere with the import statements.
2011-01-11Fix two invalid import cases we were not detecting:Rafael Ávila de Espíndola-0/+4
* If an import was unused we would never print any errors for it. * We would keep the existing environment in scope when descending 'foo.bar' and would find 'bar' in the global environment if there was no 'bar' in 'foo'.
2011-01-10Further corrections to the Makefile rules covering failing tests.Graydon Hoare-2/+5
2011-01-07Un-XFAIL drop-bind-thunk-args.rs.Graydon Hoare-0/+1
2011-01-07Drop closures. Un-XFAIL bind-interior.rs.Graydon Hoare-0/+1
2011-01-07Add sufficient import support to compile some simple single-crate programs.Rafael Ávila de Espíndola-0/+2
This is likely not the final solution. It does repetitive work and doesn't produce errors for invalid but unused imports. In any case, I think it is a useful step.
2011-01-06Un-XFAIL bind-thunk.rs.Graydon Hoare-0/+1
2011-01-05Translate trivial bindings. Un-XFAIL bind-trivial.rs.Graydon Hoare-0/+1
2011-01-04Fix Yet Another Horrid Makefile Bug that was causing the run-fail tests to ↵Graydon Hoare-1/+1
silently pass.
2011-01-04Fix another s/BREQ/SREQ/ in the makefile.Graydon Hoare-1/+1
2011-01-03Change BREQ to SREQ in deps of compile-fail/%.rustc.outGraydon Hoare-1/+1
2011-01-03Use git log pretty printing arguments that are compatible with older ↵Brian Anderson-1/+1
versions of git
2011-01-03Unset the RUST_LOG environment variable so that it doesn't interfere with ↵Brian Anderson-0/+4
the test suite
2010-12-31Un-XFAIL obj-drop and obj-with-vec.rs in rustc.Graydon Hoare-0/+2
2010-12-31Un-XFAIL obj-recursion.rs for rustc.Graydon Hoare-0/+1
2010-12-30Un-XFAIL stateful-obj.rs for rustc.Graydon Hoare-0/+1
2010-12-29More mopping up wrong-named rules in the Makefile.Graydon Hoare-147/+126
2010-12-29Remove LLVM rustboot backend.Graydon Hoare-159/+3
2010-12-24Parse 'use' directives in rustc.Rafael Ávila de Espíndola-0/+1
2010-12-24Handle missing ocaml bindings for LLVM.Rafael Ávila de Espíndola-2/+0
2010-12-20Null-check on obj box ptr, init to null. Un-XFAIL simple-obj.rs.Graydon Hoare-0/+1
2010-12-16Un-XFAIL tag.rs.Graydon Hoare-0/+1
2010-12-15rustc: Un-XFAIL alt-pattern-simple.rsPatrick Walton-0/+1
2010-12-15rustc: Fix bug involving extracting any variant element beyond the first. ↵Patrick Walton-0/+1
Un-XFAIL alt-tag.rs.
2010-12-13Fix a couple bugs in iter_sequence, un-XFAIL vec-drop.rs.Graydon Hoare-0/+1
2010-12-13Set the new vec fill-size on the compiler side, as in rustboot. Un-XFAIL ↵Graydon Hoare-0/+3
first 3 vec tests.