From 7a2535268b9675ff95d3aa9e6d8530661e96533d Mon Sep 17 00:00:00 2001 From: Fabio Scotto di Santolo Date: Tue, 1 Jul 2025 10:48:47 +0200 Subject: [PATCH] Update README.md --- exercises/mycp/README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/exercises/mycp/README.md b/exercises/mycp/README.md index 290ceb3..aec1684 100644 --- a/exercises/mycp/README.md +++ b/exercises/mycp/README.md @@ -9,10 +9,11 @@ It copies the contents of one file into another, handling errors and signals saf ``` mycp/ -├── mycp.c # Main program source -├── Makefile # Build and test automation -└── test/ - └── run_tests.sh # Automated test and Valgrind report +├── main.c # Main program source +├── Makefile # Build and test automation +├── generate_report.sh # Generate test report in HTML +├── test_mycp.sh # Automated test +├── valgrind_test.sh # Execute Valgrind tests ``` --- @@ -25,16 +26,16 @@ To compile the program: make ``` -To clean up build files: +To run valgrind test: ```bash -make clean +make valgrind ``` To remove test artifacts as well: ```bash -make distclean +make clean ``` ---