diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2dffd3a4..e26cef15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,8 +52,8 @@ jobs: - name: build and test all programs separately shell: bash run: | - ## TODO: add hugetop and skill - programs="free pgrep pidof pidwait pkill pmap ps pwdx slabtop snice sysctl tload top vmstat w watch" + ## TODO: add hugetop + programs="free pgrep pidof pidwait pkill pmap ps pwdx skill slabtop snice sysctl tload top vmstat w watch" for program in $programs; do echo "Building and testing $program" cargo test -p "uu_$program" || exit 1 diff --git a/README.md b/README.md index 95edecba..307b0c4e 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Ongoing: * `pmap`: Displays the memory map of a process. * `ps`: Displays information about active processes. * `pwdx`: Shows the current working directory of a process. +* `skill`: Sends a signal to processes based on criteria like user, terminal, etc. * `slabtop`: Displays detailed kernel slab cache information in real time. * `snice`: Changes the scheduling priority of a running process. * `sysctl`: Read or write kernel parameters at run-time. @@ -31,7 +32,6 @@ Ongoing: TODO: * `hugetop`: Report hugepage usage of processes and the system as a whole. -* `skill`: Sends a signal to processes based on criteria like user, terminal, etc. Elsewhere: