mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 04:58:57 +00:00
Disable two tests on NetBSD
One doesn't compile, the other's just borked for weird reasons possibly related to tmux and $LINES? With this, the test suite passes on NetBSD.
This commit is contained in:
parent
d5efef1cc5
commit
6848e70e87
2 changed files with 5 additions and 0 deletions
|
@ -36,6 +36,9 @@ fn test_topic_monitor() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
// FIXME: Does not compile on NetBSD
|
||||||
|
// "`*mut sem` cannot be sent between threads safely"
|
||||||
|
#[cfg(not(target_os = "netbsd"))]
|
||||||
#[serial]
|
#[serial]
|
||||||
fn test_topic_monitor_torture() {
|
fn test_topic_monitor_torture() {
|
||||||
let _cleanup = test_init();
|
let _cleanup = test_init();
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#RUN: %fish %s
|
#RUN: %fish %s
|
||||||
#REQUIRES: command -v tmux
|
#REQUIRES: command -v tmux
|
||||||
|
# Somehow $LINES is borked on NetBSD?
|
||||||
|
#REQUIRES: test $(uname) != NetBSD
|
||||||
|
|
||||||
isolated-tmux-start
|
isolated-tmux-start
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue