Files
rust/src/test/compiletest/header.rs

113 lines
3.2 KiB
Rust
Raw Normal View History

import std::option;
import std::str;
2011-08-11 19:14:38 -07:00
import std::io;
import std::fs;
import common::config;
export test_props;
export load_props;
export is_test_ignored;
type test_props = {
// Lines that should be expected, in order, on standard out
2011-09-02 15:34:58 -07:00
error_patterns: [str],
// Extra flags to pass to the compiler
2011-09-02 15:34:58 -07:00
compile_flags: option::t<str>,
// If present, the name of a file that this test should match when
// pretty-printed
pp_exact: option::t<str>
};
// Load any test directives embedded in the file
2011-09-02 15:34:58 -07:00
fn load_props(testfile: &str) -> test_props {
2011-08-19 15:32:39 -07:00
let error_patterns = [];
let compile_flags = option::none;
let pp_exact = option::none;
2011-09-02 15:34:58 -07:00
for each ln: str in iter_header(testfile) {
alt parse_error_pattern(ln) {
2011-08-19 15:32:39 -07:00
option::some(ep) { error_patterns += [ep]; }
option::none. { }
}
if option::is_none(compile_flags) {
compile_flags = parse_compile_flags(ln);
}
if option::is_none(pp_exact) {
pp_exact = parse_pp_exact(ln, testfile);
}
}
ret {
error_patterns: error_patterns,
compile_flags: compile_flags,
pp_exact: pp_exact
};
}
2011-09-02 15:34:58 -07:00
fn is_test_ignored(config: &config, testfile: &str) -> bool {
let found = false;
2011-09-02 15:34:58 -07:00
for each ln: str in iter_header(testfile) {
// FIXME: Can't return or break from iterator
2011-09-02 15:34:58 -07:00
found = found || parse_name_directive(ln, "xfail-test");
if (config.mode == common::mode_pretty) {
2011-09-02 15:34:58 -07:00
found = found || parse_name_directive(ln, "xfail-pretty");
}
}
ret found;
}
2011-09-02 15:34:58 -07:00
iter iter_header(testfile: &str) -> str {
let rdr = io::file_reader(testfile);
while !rdr.eof() {
let ln = rdr.read_line();
// Assume that any directives will be found before the first
// module or function. This doesn't seem to be an optimization
// with a warm page cache. Maybe with a cold one.
2011-09-02 15:34:58 -07:00
if str::starts_with(ln, "fn")
|| str::starts_with(ln, "mod") {
break;
} else { put ln; }
}
}
2011-09-02 15:34:58 -07:00
fn parse_error_pattern(line: &str) -> option::t<str> {
parse_name_value_directive(line, "error-pattern")
}
2011-09-02 15:34:58 -07:00
fn parse_compile_flags(line: &str) -> option::t<str> {
parse_name_value_directive(line, "compile-flags")
}
2011-09-02 15:34:58 -07:00
fn parse_pp_exact(line: &str, testfile: &str) -> option::t<str> {
alt parse_name_value_directive(line, "pp-exact") {
option::some(s) { option::some(s) }
option::none. {
2011-09-02 15:34:58 -07:00
if parse_name_directive(line, "pp-exact") {
option::some(fs::basename(testfile))
} else {
option::none
}
}
}
}
2011-09-02 15:34:58 -07:00
fn parse_name_directive(line: &str, directive: &str) -> bool {
str::find(line, directive) >= 0
}
2011-09-02 15:34:58 -07:00
fn parse_name_value_directive(line: &str,
directive: &str) -> option::t<str> {
let keycolon = directive + ":";
if str::find(line, keycolon) >= 0 {
let colon = str::find(line, keycolon) as uint;
let value =
str::slice(line, colon + str::byte_len(keycolon),
str::byte_len(line));
log #fmt("%s: %s", directive,
value);
option::some(value)
} else { option::none }
}