summary refs log tree commit diff
path: root/src/compiletest/compiletest.rs
AgeCommit message (Collapse)AuthorLines
2012-10-04Remove arg vectors from main functions. Stop supporting them.Brian Anderson-1/+2
2012-09-26core: Replace map/map_default with map_ref/map_default_refBrian Anderson-1/+1
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-1/+1
2012-09-25use + mode for (almost) everything when not using legacy modesNiko Matsakis-1/+1
2012-09-23core: Demode optionBrian Anderson-2/+2
2012-09-19std: Demode testBrian Anderson-1/+1
2012-09-19demode the each() method on vec and other iterables.Niko Matsakis-3/+3
2012-09-12Promote 'const', 'copy', 'fn' to strict keywordsBrian Anderson-1/+1
2012-09-10Convert 'import' to 'use'. Remove 'import' keyword.Brian Anderson-17/+13
2012-09-04std: Convert test to camel caseBrian Anderson-4/+4
2012-08-31Add JIT testing to compiletest with --jitBrian Anderson-1/+4
2012-08-28CamelCasify lots of stdBen Striegel-1/+1
2012-08-27Convert core::result to camel caseBrian Anderson-3/+3
2012-08-26Camel case the option typeBrian Anderson-10/+10
2012-08-24Start using core::path2::Path in a lot of places.Graydon Hoare-20/+28
2012-08-23`m1!{...}` -> `m1!(...)`Paul Stansifer-17/+17
2012-08-06Convert alt to match. Stop parsing altBrian Anderson-7/+7
2012-08-06Refcount tasks in packets to avoid races.Eric Holk-5/+0
Revert "Once again, revert "Use pipes in compiletest"" Fixes #3098
2012-08-05Switch alts to use arrowsBrian Anderson-17/+20
2012-08-03Once again, revert "Use pipes in compiletest"Eric Holk-0/+5
This reverts commit 1d04b0ed5ac829594a412298cb9f9455d1a4d843.
2012-08-02Revert "Revert "Use pipes in compiletest""Eric Holk-5/+0
This reverts commit 96c6f57d18a26157117911a05152e135cfcee2ff.
2012-08-01Convert ret to returnBrian Anderson-3/+3
2012-07-31Introduce 'return', 'match' and 'module' as synonymsBrian Anderson-16/+16
2012-07-30Change syntax extension syntax: `#m[...]` -> `m!{...}`.Paul Stansifer-17/+17
2012-07-14remove typestate from code, tests, and docsNiko Matsakis-1/+1
2012-07-14Move the world over to using the new style string literals and types. Closes ↵Michael Sullivan-46/+46
#2907.
2012-07-01Convert to new closure syntaxBrian Anderson-6/+4
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-14/+15
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-7/+7
2012-06-21Remove some singleton vector appends.Eric Holk-1/+1
2012-04-06Convert old-style for loops to new-styleMarijn Haverbeke-3/+3
Most could use the each method, but because of the hack used to disambiguate old- and new-style loops, some had to use vec::each. (This hack will go away soon.) Issue #1619
2012-04-04Logfile output from tests; summarise in make checkGrahame Bowland-2/+10
Add an optional --logfile argument to std::test::test_main and to compiletest. Use this features and the new 'check-summary.py' script to summarise all the tests performed by the 'check' target. This is a short term fix for #2075.
2012-04-01Fixing issue 1919. list_dir is the more general version that returns a ↵Jonathan Sternberg-1/+1
vector with the contents of the directory. list_dir_path contains the old behavior (as a convenience function).
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-2/+2
2012-03-17compiletest: Remove FIXME. Closes #1984Brian Anderson-3/+0
2012-03-15Associate FIXME with an issue in compiletest.rsTim Chevalier-2/+2
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-3/+2
- 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-02-28add ability to run multi-crate tests, run tests with --inlineNiko Matsakis-1/+3
2012-02-07Make process-spawning take environments and working directories, remove ↵Graydon Hoare-27/+12
procsrv task from compiletest.
2012-01-31Change option::t to optionTim Chevalier-2/+2
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-19libcore: Use 4x the number of scheduler threads for testingBrian Anderson-1/+0
An arbitrary number. I've done no measurements but it's intended to overcome the effects of tasks randomly being scheduled to threads and no work stealing. If scheduler threads == 1 then we just use a single test task.
2012-01-19Use fn~ to simplify the core::test interfaceBrian Anderson-32/+17
2012-01-18Remove '.' after nullary tags in patternsTim Chevalier-7/+7
Does what it says on the tin. The next commit will remove support for this syntax.
2012-01-06port over the tests to use the new APINiko Matsakis-8/+8
2011-12-22Register snapshots and switch logging over to use of log_full or #error / ↵Graydon Hoare-2/+2
#debug.
2011-12-18std: getopts now uses result::t (fixes #1289)Stefan Plantikow-2/+5
2011-12-13Copy first batch of material from libstd to libcore.Graydon Hoare-9/+9
2011-11-17remove compile-command from local variable blocksNiko Matsakis-1/+0
2011-11-10Cleanup unused imports in testsHaitao Li-1/+0
2011-11-01Add should_fail annotation for unit testsMatt Brubeck-1/+2
This allows test cases to assert that a function is expected to fail. Tests annotated with "should_fail" will succeed only if the function fails.