1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

Update readme, add success message at end of tests

This commit is contained in:
Nick 2014-01-03 22:39:46 -06:00
parent aac0a46b39
commit 233c49292d
3 changed files with 2 additions and 1 deletions

View file

@ -117,7 +117,6 @@ To do
- ls - ls
- make-prime-list - make-prime-list
- md5sum - md5sum
- mkdir
- mkfifo - mkfifo
- mknod - mknod
- mktemp - mktemp

View file

@ -4,6 +4,7 @@ fn main() {
test_output_multi_files_print_all_chars(); test_output_multi_files_print_all_chars();
test_stdin_squeeze(); test_stdin_squeeze();
test_stdin_number_non_blank(); test_stdin_number_non_blank();
println("cat tests completed successfully!\n");
} }
fn test_output_multi_files_print_all_chars() { fn test_output_multi_files_print_all_chars() {

View file

@ -11,6 +11,7 @@ fn main() {
test_mkdir_mode(); test_mkdir_mode();
test_mkdir_parent(); test_mkdir_parent();
test_mkdir_no_parent(); test_mkdir_no_parent();
println("mkdir tests completed successfully!\n");
} }
fn cleanup() { fn cleanup() {