From 3f17c5a1431c83eea68d021ce295a0d5ad5cddc0 Mon Sep 17 00:00:00 2001 From: Ariel Almeida <69123486+ArielMAJ@users.noreply.github.com> Date: Thu, 1 Jun 2023 19:30:33 -0300 Subject: [PATCH 1/2] [UPT][Issue #165] Update README-ptbr.md example usage. Co-authored-by: tauanesales --- translations/README-ptbr.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/translations/README-ptbr.md b/translations/README-ptbr.md index 033c935..dd0d8d4 100644 --- a/translations/README-ptbr.md +++ b/translations/README-ptbr.md @@ -55,7 +55,9 @@ O _test.me_ é uma ferramenta que automatiza o processo de teste do seu código. ### Exemplo de uso -image +https://github.com/ArielMAJ/test.me/assets/69123486/a90d5f43-c24d-4f14-8fe9-47c798c35dfb + +Obs.: Os comandos do Makefile são apenas para facilitar a construção/compilação e desenvolvimento desta ferramenta. Para usár a ferramenta em si, você só precisará compilá-la uma única vez. Após isso basta apenas executá-la com seu código e testes conforme exemplificado em parte do vídeo e no comando `make run` do Makefile. ### Por que C? From 28a080fb38af5553775ccd13eaab25bc84cc18b4 Mon Sep 17 00:00:00 2001 From: "Tung Bui (Leo)" <85242618+tungbq@users.noreply.github.com> Date: Fri, 2 Jun 2023 07:41:11 +0700 Subject: [PATCH 2/2] Improve argument check log in src/test.me.c --- src/test.me.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test.me.c b/src/test.me.c index d4189a7..3406ba0 100644 --- a/src/test.me.c +++ b/src/test.me.c @@ -22,8 +22,8 @@ int main(int argc, char *argv[]) { printf(GREEN "Usage \e[3m\e[1mmultiple folders" NO_COLOR ": " YELLOW "./test.me " GREEN "<" CYAN "code_standard_name" GREEN - "> <" CYAN "test_folder_standard_name" GREEN "> [" CYAN - "folders_path" GREEN "]\n" NO_COLOR); + "> <" CYAN "test_folder_standard_name" GREEN "> <" CYAN + "folders_path" GREEN ">\n" NO_COLOR); printf("Example: ./test.me ./solution.c ./tests/ ./example_input/\n"); printf(RED