mirror of
https://github.com/stefanocasazza/ULib.git
synced 2025-09-28 19:05:55 +08:00
17 lines
309 B
Bash
Executable File
17 lines
309 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ../.function
|
|
|
|
## base64.test -- Test base64 feature
|
|
|
|
start_msg base64
|
|
|
|
$WINELOADER ./crypto_base64$SUFFIX > err/base64.err < inp/base64.inp
|
|
$WINELOADER ./crypto_base64$SUFFIX -d > out/base64.out < err/base64.err
|
|
|
|
RESULT=$?
|
|
export RESULT
|
|
|
|
# Test against expected output
|
|
test_output_diff base64
|