chore: rename test directory to test-run

This commit is contained in:
Jesús Pérex 2025-05-27 01:18:51 +01:00
parent baf281eddd
commit 6bea25dfd2
5 changed files with 22 additions and 4 deletions

View File

@ -62,9 +62,27 @@ The following path will be ignored during [clean_target_directory](src/directory
│   ├── ins_background.png │   ├── ins_background.png
│   └── tools │   └── tools
├── run.sh Script model to run ├── run.sh Script model to run
├── src ├── src Rust source code
│   └── main.rs Rust source code │   ├── directory_processor.rs
└── test Path to test with run.sh │   ├── error.rs
│   ├── file_type.rs
│   ├── lib.rs
│   ├── logging.rs
│   ├── main.rs
│   ├── tests Unitary tests
│   ├── tests.rs
│   └── tools.rs
├── tests Integration tests
│   ├── common.rs
│   ├── logging_writer_tests.rs
│   ├── test_different_log_levels.rs
│   ├── test_init_logging_append_mode.rs
│   ├── test_init_logging_with_file.rs
│   ├── test_log_detail_macro.rs
│   ├── test_log_level_changes.rs
│   ├── test_log_timed_macro.rs
│   └── test_simple_logging.rs
└── test-run Path to test with run.sh
├── documents Target path PDFs files ├── documents Target path PDFs files
└── originals Source path ODTs files └── originals Source path ODTs files
</pre> </pre>

2
run.sh
View File

@ -3,4 +3,4 @@ ROOT_PATH=${ROOT_PATH:-.}
BIN_APP_PATH=${BIN_APP_PATH:-/usr/local/bin} BIN_APP_PATH=${BIN_APP_PATH:-/usr/local/bin}
cd $ROOT_PATH cd $ROOT_PATH
$BIN_APP_PATH/dir-odt-to-pdf test/originals/ test/documents $@ $BIN_APP_PATH/dir-odt-to-pdf test-run/originals/ test-run/documents $@