mirror of
https://git.code.sf.net/p/zint/code
synced 2026-01-08 12:32:01 +00:00
general: change BARCODE_RAW_TEXT to write to new zint_symbol
fields `raw_segs` and `raw_seg_count` instead of `text`, and to do so for all symbologies, using new common funcs `rt_cpy()` etc. MICROPDF417: return ECC percentage in top byte of `option_1` DBAR_EXP_STK: return `option_2`/`option_3` feedback CLI: change warning text "ignoring" -> "**IGNORED**" GUI: show feedback for DBAR_EXP_STK, MICROPDF417, UPNQR ctest: fix recent inability to run tests via "ctest" on Windows (MSVC) by using cmake 3.22 feature `ENVIRONMENT_MODIFICATION` manual: document feedback and RAW_TEXT in new "Feedback" section; rephrase some symbology descriptions test suite: new general-use arg "-a"; add `func_name` to context; new "test_bwipp" test for testing BWIPP against ZXing-C++
This commit is contained in:
@@ -377,7 +377,7 @@ static void test_numeric(const testCtx *const p_ctx) {
|
||||
int data_size = ARRAY_SIZE(data);
|
||||
int i, ret;
|
||||
|
||||
testStart("test_numeric");
|
||||
testStart(p_ctx->func_name);
|
||||
|
||||
for (i = 0; i < data_size; i++) {
|
||||
|
||||
@@ -440,7 +440,7 @@ static void test_numeric_bc(const testCtx *const p_ctx) {
|
||||
|
||||
int i, ret, bc_ret;
|
||||
|
||||
testStart("test_numeric_bc");
|
||||
testStart(p_ctx->func_name);
|
||||
|
||||
for (i = 0; i < 1001; i++) {
|
||||
if (testContinue(p_ctx, i)) continue;
|
||||
@@ -679,7 +679,7 @@ static void test_alpha2(const testCtx *const p_ctx) {
|
||||
int data_size = ARRAY_SIZE(data);
|
||||
int i, ret;
|
||||
|
||||
testStart("test_alpha2");
|
||||
testStart(p_ctx->func_name);
|
||||
|
||||
for (i = 0; i < data_size; i++) {
|
||||
|
||||
@@ -746,7 +746,7 @@ static void test_alpha2_bc(const testCtx *const p_ctx) {
|
||||
|
||||
(void)p_ctx;
|
||||
|
||||
testStart("test_alpha2_bc");
|
||||
testStart(p_ctx->func_name);
|
||||
|
||||
for (i = 0; i < 128; i++) {
|
||||
int j;
|
||||
|
||||
Reference in New Issue
Block a user