mirror of
https://git.savannah.gnu.org/git/tar.git
synced 2026-04-19 16:15:10 +00:00
10 lines
240 B
Bash
Executable File
10 lines
240 B
Bash
Executable File
#! /bin/sh
|
|
# Do common operations after a particular test.
|
|
|
|
cd ..
|
|
exec 1> /dev/null
|
|
exec 2> /dev/null
|
|
echo $echo_n "$out$echo_c" | cmp -s - tmp-$$/stdout || exit 1
|
|
echo $echo_n "$err$echo_c" | cmp -s - tmp-$$/stderr || exit 1
|
|
rm -rf tmp-$$
|