Skip to content

Commit fb962d0

Browse files
authored
Merge pull request #482 from cakebaker/ci_enable_separate_test_for_skill
ci: enable separate test for `skill`
2 parents 1c70e02 + bb1c798 commit fb962d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252
- name: build and test all programs separately
5353
shell: bash
5454
run: |
55-
## TODO: add hugetop and skill
56-
programs="free pgrep pidof pidwait pkill pmap ps pwdx slabtop snice sysctl tload top vmstat w watch"
55+
## TODO: add hugetop
56+
programs="free pgrep pidof pidwait pkill pmap ps pwdx skill slabtop snice sysctl tload top vmstat w watch"
5757
for program in $programs; do
5858
echo "Building and testing $program"
5959
cargo test -p "uu_$program" || exit 1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Ongoing:
2020
* `pmap`: Displays the memory map of a process.
2121
* `ps`: Displays information about active processes.
2222
* `pwdx`: Shows the current working directory of a process.
23+
* `skill`: Sends a signal to processes based on criteria like user, terminal, etc.
2324
* `slabtop`: Displays detailed kernel slab cache information in real time.
2425
* `snice`: Changes the scheduling priority of a running process.
2526
* `sysctl`: Read or write kernel parameters at run-time.
@@ -31,7 +32,6 @@ Ongoing:
3132

3233
TODO:
3334
* `hugetop`: Report hugepage usage of processes and the system as a whole.
34-
* `skill`: Sends a signal to processes based on criteria like user, terminal, etc.
3535

3636
Elsewhere:
3737

0 commit comments

Comments
 (0)