chore: rename test directory to test-run
This commit is contained in:
parent
baf281eddd
commit
6bea25dfd2
24
README.md
24
README.md
@ -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
2
run.sh
@ -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 $@
|
||||||
|
0
test/.gitignore → test-run/.gitignore
vendored
0
test/.gitignore → test-run/.gitignore
vendored
Loading…
x
Reference in New Issue
Block a user