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