Fix invalid byte sequence error when running test_script.sh in some cases (#423)

This fixes the following error that may occur:
argument parsing failed: Invalid byte sequence in conversion input
This commit is contained in:
Michele Locati 2023-10-06 23:00:07 +02:00 committed by GitHub
parent 57d9e7a65e
commit c423097326
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 11 deletions

View File

@ -1,5 +1,7 @@
name: build name: build
on: [ push, pull_request ] on: [ push, pull_request ]
env:
TEST_DATA_URL: https://github.com/mdbtools/mdbtestdata/archive/refs/heads/master.tar.gz
jobs: jobs:
linux: linux:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -14,7 +16,10 @@ jobs:
run: sudo apt install gettext run: sudo apt install gettext
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Fetch test data - name: Fetch test data
run: git clone https://github.com/mdbtools/mdbtestdata.git test run: |
rm -rf test
mkdir test
curl -sSLf "$TEST_DATA_URL" | tar xz --strip-components=1 -C test
- name: Autoconf - name: Autoconf
run: autoreconf -i -f run: autoreconf -i -f
- name: Configure - name: Configure
@ -24,7 +29,7 @@ jobs:
- name: Make - name: Make
run: make run: make
- name: CLI tests - name: CLI tests
run: bash -e -x ./test_script.sh run: ./test_script.sh
- name: SQL tests - name: SQL tests
run: bash -e -x ./test_sql.sh run: bash -e -x ./test_sql.sh
- name: ODBC tests - name: ODBC tests
@ -52,7 +57,10 @@ jobs:
run: brew install bison gawk automake run: brew install bison gawk automake
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Fetch test data - name: Fetch test data
run: git clone https://github.com/mdbtools/mdbtestdata.git test run: |
rm -rf test
mkdir test
curl -sSLf "$TEST_DATA_URL" | tar xz --strip-components=1 -C test
- name: Autoconf - name: Autoconf
run: autoreconf -i -f run: autoreconf -i -f
- name: Configure - name: Configure
@ -63,7 +71,7 @@ jobs:
- name: Make - name: Make
run: make run: make
- name: CLI tests - name: CLI tests
run: bash -e -x ./test_script.sh run: ./test_script.sh
- name: SQL tests - name: SQL tests
run: bash -e -x ./test_sql.sh run: bash -e -x ./test_sql.sh
- name: ODBC tests - name: ODBC tests
@ -94,7 +102,10 @@ jobs:
run: echo /usr/local/opt/libiodbc/bin >> $GITHUB_PATH run: echo /usr/local/opt/libiodbc/bin >> $GITHUB_PATH
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Fetch test data - name: Fetch test data
run: git clone https://github.com/mdbtools/mdbtestdata.git test run: |
rm -rf test
mkdir test
curl -sSLf "$TEST_DATA_URL" | tar xz --strip-components=1 -C test
- name: Autoconf - name: Autoconf
run: autoreconf -i -f run: autoreconf -i -f
- name: Configure - name: Configure
@ -129,8 +140,11 @@ jobs:
git git
glib2-devel glib2-devel
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Check out test data - name: Fetch test data
run: git clone https://github.com/mdbtools/mdbtestdata.git test run: |
rm -rf test
mkdir test
curl -sSLf "$TEST_DATA_URL" | tar xz --strip-components=1 -C test
- name: Autoconf - name: Autoconf
run: autoreconf -i -f run: autoreconf -i -f
- name: Configure - name: Configure
@ -138,6 +152,6 @@ jobs:
- name: Make - name: Make
run: make run: make
- name: Test - name: Test
run: bash -e -x ./test_script.sh run: ./test_script.sh
- name: SQL Test - name: SQL Test
run: bash -e -x ./test_sql.sh run: bash -e -x ./test_sql.sh

4
.gitignore vendored
View File

@ -17,6 +17,7 @@ m4/
config.log config.log
config.status config.status
configure configure
/configure~
Makefile.in Makefile.in
Makefile Makefile
doc/*.1 doc/*.1
@ -54,10 +55,9 @@ src/util/prkkd
src/util/prole src/util/prole
src/util/prtable src/util/prtable
src/util/updrow src/util/updrow
/test/
## apidocs docs related ## apidocs docs related
public/ public/
.sass-cache/ .sass-cache/
*.css.map *.css.map
temp-man-pages/ temp-man-pages/

View File

@ -1,4 +1,9 @@
#!/bin/bash #!/bin/sh
set -o errexit
set -x
LANG=C.UTF-8
# Simple test script; run after performing # Simple test script; run after performing
# git clone https://github.com/mdbtools/mdbtestdata.git test # git clone https://github.com/mdbtools/mdbtestdata.git test
@ -16,3 +21,5 @@
./src/util/mdb-ver test/data/ASampleDatabase.accdb ./src/util/mdb-ver test/data/ASampleDatabase.accdb
./src/util/mdb-ver test/data/nwind.mdb ./src/util/mdb-ver test/data/nwind.mdb
./src/util/mdb-queries test/data/ASampleDatabase.accdb qryCostsSummedByOwner ./src/util/mdb-queries test/data/ASampleDatabase.accdb qryCostsSummedByOwner
printf -- '\n\n%s Passed.\n' "$0"