mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-17 16:44:34 -04:00
Move only downwards in the filesystem hierarchy
This will pick up the local copies of the test data by default, without needing to create a subdirectory in the backend/tests path and executing the tests from there. The Current Working Directory can be set if this proves to be insufficient
This commit is contained in:
parent
98cd7b231f
commit
6de8fe1c62
8 changed files with 142 additions and 142 deletions
|
@ -41,8 +41,8 @@ static void test_csv(int index, int debug) {
|
|||
|
||||
testStart("");
|
||||
|
||||
FILE *fd = fopen("../data/imail/usps/uspsIMbEncoderTestCases.csv", "r");
|
||||
assert_nonnull(fd, "open ../data/imail/usps/uspsIMbEncoderTestCases.csv");
|
||||
FILE *fd = fopen("data/imail/usps/uspsIMbEncoderTestCases.csv", "r");
|
||||
assert_nonnull(fd, "open data/imail/usps/uspsIMbEncoderTestCases.csv");
|
||||
|
||||
char buffer[1024];
|
||||
char id[10];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue