Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/zint/backend/tests/tools/run_bwipp_tests.sh @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 #!/bin/bash | |
| 2 # Copyright (C) 2021-2024 Robin Stuart <rstuart114@gmail.com> | |
| 3 # SPDX-License-Identifier: BSD-3-Clause | |
| 4 # vim: set ts=4 sw=4 et : | |
| 5 set -e | |
| 6 | |
| 7 function run_bwipp_test() { | |
| 8 if [ -z "$2" ]; then | |
| 9 echo -e "\n$1" | |
| 10 backend/tests/$1 -d $(expr 128 + 16 + 32) || exit 1 | |
| 11 else | |
| 12 echo -e "\n$1 -f $2" | |
| 13 backend/tests/$1 -f "$2" -d $(expr 128 + 16 + 32) || exit 1 | |
| 14 fi | |
| 15 } | |
| 16 | |
| 17 run_bwipp_test "test_2of5" "encode" | |
| 18 run_bwipp_test "test_auspost" "input" | |
| 19 run_bwipp_test "test_auspost" "encode" | |
| 20 run_bwipp_test "test_aztec" "encode" | |
| 21 run_bwipp_test "test_aztec" "encode_segs" | |
| 22 run_bwipp_test "test_bc412" | |
| 23 run_bwipp_test "test_channel" "encode" | |
| 24 run_bwipp_test "test_codablock" "input" | |
| 25 run_bwipp_test "test_codablock" "encode" | |
| 26 run_bwipp_test "test_codablock" "fuzz" | |
| 27 run_bwipp_test "test_code" "encode" | |
| 28 run_bwipp_test "test_code1" "encode" | |
| 29 run_bwipp_test "test_code1" "encode_segs" | |
| 30 run_bwipp_test "test_code1" "fuzz" | |
| 31 run_bwipp_test "test_code128" | |
| 32 run_bwipp_test "test_code16k" "input" | |
| 33 run_bwipp_test "test_code16k" "encode" | |
| 34 run_bwipp_test "test_code49" "input" | |
| 35 run_bwipp_test "test_code49" "encode" | |
| 36 run_bwipp_test "test_composite" | |
| 37 run_bwipp_test "test_dmatrix" "input" | |
| 38 run_bwipp_test "test_dmatrix" "encode" | |
| 39 run_bwipp_test "test_dmatrix" "encode_segs" | |
| 40 run_bwipp_test "test_dotcode" "input" | |
| 41 run_bwipp_test "test_dotcode" "encode" | |
| 42 run_bwipp_test "test_dotcode" "encode_segs" | |
| 43 run_bwipp_test "test_gs1" "gs1_reduce" | |
| 44 run_bwipp_test "test_imail" "input" | |
| 45 run_bwipp_test "test_imail" "encode" | |
| 46 run_bwipp_test "test_mailmark" "2d_encode" | |
| 47 run_bwipp_test "test_maxicode" "large" | |
| 48 run_bwipp_test "test_maxicode" "input" | |
| 49 run_bwipp_test "test_maxicode" "encode" | |
| 50 run_bwipp_test "test_maxicode" "encode_segs" | |
| 51 run_bwipp_test "test_medical" "input" | |
| 52 run_bwipp_test "test_medical" "encode" | |
| 53 run_bwipp_test "test_pdf417" "input" | |
| 54 run_bwipp_test "test_pdf417" "encode" | |
| 55 run_bwipp_test "test_pdf417" "encode_segs" | |
| 56 run_bwipp_test "test_pdf417" "fuzz" | |
| 57 run_bwipp_test "test_plessey" "encode" | |
| 58 run_bwipp_test "test_postal" "input" | |
| 59 run_bwipp_test "test_postal" "encode" | |
| 60 run_bwipp_test "test_qr" | |
| 61 run_bwipp_test "test_rss" | |
| 62 run_bwipp_test "test_telepen" "encode" | |
| 63 run_bwipp_test "test_upcean" "upce_input" | |
| 64 run_bwipp_test "test_upcean" "encode" | |
| 65 run_bwipp_test "test_ultra" "encode" |
