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