File tree 2 files changed +3
-0
lines changed
2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -324,6 +324,7 @@ mod test {
324
324
}
325
325
326
326
#[ test]
327
+ #[ ignore( reason = "no ncurses on buildbots, needs a bundled terminfo file to test against" ) ]
327
328
fn test_parse ( ) {
328
329
// FIXME #6870: Distribute a compiled file in src/tests and test there
329
330
// parse(io::file_reader(&p("/usr/share/terminfo/r/rxvt-256color")).unwrap(), false);
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ pub fn open(term: &str) -> Result<@Reader, ~str> {
68
68
}
69
69
70
70
#[ test]
71
+ #[ ignore( reason = "buildbots don't have ncurses installed and I can't mock everything I need" ) ]
71
72
fn test_get_dbpath_for_term ( ) {
72
73
// woefully inadequate test coverage
73
74
use std:: os:: { setenv, unsetenv} ;
@@ -80,6 +81,7 @@ fn test_get_dbpath_for_term() {
80
81
}
81
82
82
83
#[test]
84
+ #[ignore(reason = " see test_get_dbpath_for_term")]
83
85
fn test_open() {
84
86
open(" screen");
85
87
let t = open(" nonexistent terminal that hopefully does not exist" ) ;
You can’t perform that action at this time.
0 commit comments