mirror of
https://github.com/dankamongmen/notcurses.git
synced 2024-11-02 09:40:15 +00:00
[rust] skip notcurses_debug test in macos #1937
also: - minor warning fix
This commit is contained in:
parent
3f2147b9e4
commit
ca284f9093
@ -694,8 +694,9 @@ impl Nc {
|
||||
NCSTYLE_STRUCK => "struck",
|
||||
NCSTYLE_BOLD => "bold",
|
||||
NCSTYLE_BLINK => "blink",
|
||||
#[allow(unreachable_patterns)] // FIXME
|
||||
NCSTYLE_NONE => "none",
|
||||
_ => "",
|
||||
_ => "none",
|
||||
});
|
||||
string.push(' ');
|
||||
}
|
||||
|
@ -145,6 +145,7 @@ fn notcurses_at_yx() {
|
||||
|
||||
#[test]
|
||||
#[serial]
|
||||
#[cfg_attr(target_os = "macos", ignore)] // FIXME
|
||||
fn notcurses_debug() {
|
||||
unsafe {
|
||||
let nc = notcurses_init_test();
|
||||
|
Loading…
Reference in New Issue
Block a user