compiletest-rs icon indicating copy to clipboard operation
compiletest-rs copied to clipboard

An extraction of the compiletest utility from the Rust compiler

Results 37 compiletest-rs issues
Sort by recently updated
recently updated
newest added

By default compiletest seems to dump the output in json which is good but difficult to read. Human readable output can be added manually by including a compiler directive at...

Hi! As of now, it seems to be the case that the testcases can be filtered by a substring or by exact match (https://github.com/laumann/compiletest-rs/blob/master/src/common.rs#L149). I would appreciate if I could...

Currently, there is quite a notable diff between the `runtest.rs` file in this repo and upstream. Say I wanted to help syncing, what is the usual process? Is there some...

If I do a compiletest test run under Emacs, Emacs sets the `TERM` environment variable to `"dumb"`, and then the test run panics: ``` running 2 tests test [compile-fail] asynchronous/async-fn-not-unpin.rs...

Currently, run-pass tests are considered successful even if the binary they run exits with a non-zero exit code. This is a critical bug, after all, checking if things ran successfully...

Is there any way to only execute a single ui test?

`clean_rmeta()` now removes more files (for each `foo.rmeta` found, it also removes all `foo.*`). Folders are no longer limited to `*/deps`.

Fixes #41 Example of an expected error that matches 2 actual errors ``` rust // Should get errors for both 'Some' and 'None' use std::option::Option::{Some, None}; //~ ERROR*2 unused import...

WIP: this uses my branch of stable libtest, that will be merged as part of https://github.com/rust-lang/libtest/pull/11 . Once that is merged I'll update this PR to use libtest 0.0.2, but...

Part of the output when there's a compiler error is something like this: ``` The actual stderr differed from the expected stderr. Actual stderr saved to /tmp/compiletestmAAI3R/include_not_found_text_clauses/include_not_found_text_clauses.stderr To update references,...