Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
aklomp committed Jan 28, 2024
1 parent 8f3212f commit 640c483
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Expand Up @@ -197,6 +197,8 @@ jobs:
make
${{ matrix.env }}${{ matrix.toolchain || 'toolchain' }}
${{ matrix.env }}cmake
unzip
xxhash
- name: CMake Configure
shell: msys2 {0}
run: >
Expand All @@ -212,6 +214,9 @@ jobs:
- name: CTest
shell: msys2 {0}
run: ctest --no-tests=error --test-dir out -VV --build-config Release
- name: Issue 137 repro
shell: msys2 {0}
run: ./test/ci/issue137.sh

msys2-makefile-test:
name: msys2-makefile-${{ matrix.msystem }}
Expand Down
21 changes: 21 additions & 0 deletions test/ci/issue137.sh
@@ -0,0 +1,21 @@
#!/bin/bash
set -xev

wget https://github.com/aklomp/base64/files/14074869/in.bin.zip
unzip in.bin.zip

out/bin/base64 in.bin > in.bin.b64
out/bin/base64 -d in.bin.b64 > out.bin

xxhsum *.bin

# ---

base64 in.bin > in.bin.b64
out/bin/base64 -d in.bin.b64 > out.bin
xxhsum *.bin

# ---

base64 -d in.bin.b64 > out.bin
xxhsum *.bin

0 comments on commit 640c483

Please sign in to comment.