mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
11 lines
235 B
Bash
Executable file
11 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -e "${TEST_PWD}/testdata/${1}.hdr" ]; then
|
|
cat "${TEST_PWD}/testdata/${1}.hdr"
|
|
fi
|
|
|
|
cat > ${TEST_STATE_DIR}/msg
|
|
|
|
if [ -e "${TEST_PWD}/testdata/${1}.exit" ]; then
|
|
exit "$(cat "${TEST_PWD}/testdata/${1}.exit")"
|
|
fi
|