Skip to content

Commit 2c058ae

Browse files
committed
[sys] unify integration tests into a single unit, except for diff
1 parent 380f0f6 commit 2c058ae

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ fn check_output_is_positive_integer(_: &TestPlan, output: &Output) {
3434
}
3535

3636
#[test]
37-
fn test_sysconf_arg_max() {
37+
fn sysconf_arg_max() {
3838
run_getconf_test(vec!["ARG_MAX"], 0, check_output_is_positive_integer);
3939
}
4040

4141
#[test]
42-
fn test_pathconf_link_max() {
42+
fn pathconf_link_max() {
4343
run_getconf_test(vec!["LINK_MAX", "/"], 0, check_output_is_positive_integer);
4444
}

sys/tests/sys-tests.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mod getconf;

0 commit comments

Comments
 (0)