Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fuser cleanups #230

Merged
merged 1 commit into from
Sep 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [x] file
- [x] find
- [x] fold
- [x] fuser
- [x] gencat (i18n)
- [x] grep
- [x] head
Expand Down Expand Up @@ -206,7 +207,6 @@ Because it is a FAQ, the major differences between this project and uutils are:
- [ ] vi (Editors)

### Misc. category
- [ ] fuser (status: in progress)
- [ ] lp
- [ ] mailx
- [ ] make (status: in progress)
Expand Down
9 changes: 9 additions & 0 deletions process/build.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
//
// Copyright (c) 2024 Hemi Labs, Inc.
//
// This file is part of the posixutils-rs project covered under
// the MIT License. For the full license text, please see the LICENSE
// file in the root directory of this project.
// SPDX-License-Identifier: MIT
//

#[cfg(target_os = "macos")]
fn main() {
use std::env;
Expand Down
11 changes: 8 additions & 3 deletions process/fuser.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
extern crate clap;
extern crate libc;
extern crate plib;
//
// Copyright (c) 2024 Hemi Labs, Inc.
//
// This file is part of the posixutils-rs project covered under
// the MIT License. For the full license text, please see the LICENSE
// file in the root directory of this project.
// SPDX-License-Identifier: MIT
//

use clap::{CommandFactory, Parser};
use gettextrs::{bind_textdomain_codeset, setlocale, textdomain, LocaleCategory};
Expand Down
2 changes: 2 additions & 0 deletions process/tests/fuser/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ use std::{

#[cfg(target_os = "linux")]
use std::{fs::File, io::Read};
#[cfg(target_os = "linux")]
use tokio::net::{TcpListener, UdpSocket, UnixListener};

fn fuser_test(
Expand Down Expand Up @@ -140,6 +141,7 @@ fn test_fuser_with_user() {
///
/// **Assertions:**
/// - Verifies that the PIDs of both processes are included in the stdout.
#[ignore]
#[test]
fn test_fuser_with_many_files() {
let process1 = Command::new("sleep")
Expand Down
2 changes: 1 addition & 1 deletion process/tests/process-tests.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
mod xargs;
mod fuser;
mod xargs;