Skip to content

Commit ab8d994

Browse files
committed
fix the builds
1 parent 3de18dd commit ab8d994

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

Cargo.lock

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/by-util/test_expr.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@
77
// spell-checker:ignore abbccd abcac acabc andand bigcmp bignum emptysub
88
// spell-checker:ignore orempty oror
99

10-
use uutests::new_ucmd;
1110
use uutests::util::TestScenario;
12-
use uutests::util_name;
11+
use uutests::{new_ucmd, util_name};
1312

1413
#[test]
1514
fn test_no_arguments() {
@@ -402,7 +401,8 @@ fn test_long_input() {
402401

403402
/// Regroup the testcases of the GNU test expr.pl
404403
mod gnu_expr {
405-
use crate::common::util::TestScenario;
404+
use uutests::util::TestScenario;
405+
use uutests::{at_and_ucmd, new_ucmd, util_name};
406406

407407
#[test]
408408
fn test_a() {

tests/by-util/test_false.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// For the full copyright and license information, please view the LICENSE
44
// file that was distributed with this source code.
55

6-
use crate::common::util::TestScenario;
76
use regex::Regex;
87

98
#[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "netbsd"))]

tests/by-util/test_head.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
// spell-checker:ignore (words) bogusfile emptyfile abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstu
77
// spell-checker:ignore (words) seekable
88

9-
use crate::common::util::TestScenario;
9+
use uutests::util::TestScenario;
10+
use uutests::{at_and_ucmd, new_ucmd, util_name};
11+
1012
#[cfg(all(
1113
not(target_os = "windows"),
1214
not(target_os = "macos"),

tests/by-util/test_kill.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
// spell-checker:ignore IAMNOTASIGNAL
77

8-
use crate::common::util::TestScenario;
98
use regex::Regex;
109
use std::os::unix::process::ExitStatusExt;
1110
use std::process::{Child, Command};

tests/by-util/test_true.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// For the full copyright and license information, please view the LICENSE
44
// file that was distributed with this source code.
55

6-
use crate::common::util::TestScenario;
76
use regex::Regex;
87

98
#[cfg(any(target_os = "linux", target_os = "freebsd", target_os = "netbsd"))]

tests/uutests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "uutests"
5-
version = "0.0.29"
5+
version = "0.0.30"
66
authors = ["uutils developers"]
77
license = "MIT"
88
description = "uutils ~ 'core' uutils test library (cross-platform)"

0 commit comments

Comments
 (0)