summary refs log tree commit diff
path: root/src/compiletest/runtest.rs
AgeCommit message (Collapse)AuthorLines
2012-03-28Fix long line. release-0.2 0.2Graydon Hoare-1/+2
2012-03-28refactor so that pretty mode tests also run aux-build. Fixes #2060.Niko Matsakis-14/+27
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-12/+12
2012-03-15Use str::is_whitespace instead of dup'd is_whitespace functionTim Chevalier-7/+1
2012-03-13Overhaul constructor naming in libsBrian Anderson-1/+1
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-7/+4
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-03-02core: Remove _mut functions from vecBrian Anderson-1/+2
Instead, use vec::to_mut/from_mut to transform vectors in place as needed.
2012-03-02retool inline encoding to handle methods, fix testsNiko Matsakis-4/+9
2012-02-28add ability to run multi-crate tests, run tests with --inlineNiko Matsakis-4/+21
2012-02-23Finish cleanup of core::strMarijn Haverbeke-9/+7
Closes #1849
2012-02-13(core::str) add find_bytes and export it...Kevin Cantu-1/+1
2012-02-10log to stderr instead of stdoutTed Horst-2/+2
includes rustc diagnostics runtest updated to check stderr for errors
2012-02-07Make process-spawning take environments and working directories, remove ↵Graydon Hoare-42/+43
procsrv task from compiletest.
2012-02-07String split renaming:Kevin Cantu-4/+4
* Renamed str::split -> str::split_byte * Renamed str::splitn -> str::splitn_byte * Renamed str::split_func -> str::split * Renamed str::split_char -> str::split_char * Renamed str::split_chars_iter -> str::split_char_iter * Added u8::is_ascii * Fixed the behavior of str::split_str, so that it matches split_chars and split (i.e. ["", "XXX", "YYY", ""] == split_str(".XXX.YYY.", ".")) * Fixed str::split_byte and str::splitn_byte so that they handle splitting UTF-8 strings on a given UTF-8/ASCII byte and also handle "" as the others do
2012-02-06Revert "log to stderr instead of stdout"Brian Anderson-2/+2
This is causing mysterious hangs on windows. Issue #1769. This reverts commit d65eabd5de4c41e4bc93b9c6c03d6278299ceb76.
2012-02-03log to stderr instead of stdoutTed Horst-2/+2
includes rustc diagnostics runtest updated to check stderr for errors
2012-01-31Change option::t to optionTim Chevalier-4/+4
Now that core exports "option" as a synonym for option::t, search-and- replace option::t with option. The only place that still refers to option::t are the modules in libcore that use option, because fixing this requires a new snapshot (forthcoming).
2012-01-21issue #1352: change param order on vec::init_elt, putting block in final ↵Graham Fawcett-1/+1
position. To match the init_fn() and init_fn_mut() changes.
2012-01-19Use fn~ to simplify the core::test interfaceBrian Anderson-2/+1
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-8/+8
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-11Major clean-up of std::ioMarijn Haverbeke-4/+1
Use ifaces instead of objs, stop wrapping everything in two (or three) layers of no-value-added indirection, and remove some of the more pointless/outdated idioms from the code.
2012-01-04make scanning more efficient by avoiding recomputationNiko Matsakis-4/+7
2012-01-04extend tester so that error msgs can be attached to linesNiko Matsakis-2/+67
2012-01-01freebsd supportUser Jyyou-0/+1
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-3/+3
#debug.
2011-12-16reorder args to the various vec, option fns so blk comes lastNiko Matsakis-1/+1
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-4/+4
2011-11-29when type checking still pass in the rustc args from cmd lineNiko Matsakis-6/+2
otherwise we use the wrong target and things start to fail
2011-11-22runtest.rs: Fix typo in error messageHaitao Li-1/+1
2011-11-16Fix S_IRUSR/S_IWUSR constants on mac. Closes #726Brian Anderson-7/+0
2011-11-10Cleanup unused imports in testsHaitao Li-1/+0
2011-10-29stdlib: Make io failures recoverable by returning a resultBrian Anderson-3/+5
2011-10-20Make fn denote a bare function. Convert fn to fn@ as neededBrian Anderson-1/+1
2011-10-10Adjust function signatures to allow for vecs being immediateMarijn Haverbeke-1/+1
Some code was relying on vectors being implicitly by-reference (as non-immediate value). This adds the necessary &&-sigils. Closes #1021
2011-10-09Revert "Revert "Stop using (DY)LD_LIBRARY_PATH on Unix""Brian Anderson-0/+8
This reverts commit 941d5e737cf459a8748a509850e9cfa4a573e78d.
2011-10-09Revert "Stop using (DY)LD_LIBRARY_PATH on Unix"Brian Anderson-8/+0
This reverts commit 4b58071f96821f43e5124d46b65f4e777992415f.
2011-10-06Stop using (DY)LD_LIBRARY_PATH on UnixBrian Anderson-0/+8
2011-10-02Move compiletest to src/ and cleanup build rulesBrian Anderson-0/+392