mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
Avoid spurious failures in the presence of non-zero default nice
Make `test_get_current_niceness` query the libc nice value instead of hard-coding a value of zero. This avoids a spurious failure on systems which have a non-zero default nice value. This fixes spurious failures on my machine.
This commit is contained in:
parent
0984097103
commit
12686c478e
1 changed files with 6 additions and 3 deletions
|
@ -1,11 +1,14 @@
|
||||||
|
// spell-checker:ignore libc's
|
||||||
use crate::common::util::TestScenario;
|
use crate::common::util::TestScenario;
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(not(target_os = "android"))]
|
#[cfg(not(target_os = "android"))]
|
||||||
fn test_get_current_niceness() {
|
fn test_get_current_niceness() {
|
||||||
// NOTE: this assumes the test suite is being run with a default niceness
|
// Test that the nice command with no arguments returns the default nice
|
||||||
// of 0, which may not necessarily be true
|
// value, which we determine by querying libc's `nice` in our own process.
|
||||||
new_ucmd!().run().stdout_is("0\n");
|
new_ucmd!()
|
||||||
|
.run()
|
||||||
|
.stdout_is(format!("{}\n", unsafe { libc::nice(0) }));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue