c7cf98b0e0
The close_stream() is copied from GNU lib. Inspiration to do this is talk by Jim Meyering - Goodbye World! The perils of relying on output streams in C. Reference: http://www.irill.org/events/ghm-gnu-hackers-meeting/videos/jim-meyering-goodbye-world-the-perils-of-relying-on-output-streams-in-c Signed-off-by: Sami Kerola <kerolasa@iki.fi>
20 lines
526 B
Plaintext
20 lines
526 B
Plaintext
#
|
|
# Testsuite for lib/fileutils program
|
|
#
|
|
|
|
set noarg "${topdir}lib/test_fileutils"
|
|
|
|
set test "without argument"
|
|
spawn $noarg
|
|
expect_pass "$test" "Hello, World!"
|
|
|
|
set badfd "${topdir}testsuite/lib.test/fileutils_badfd.sh"
|
|
set test "test bad file descriptor"
|
|
spawn $badfd
|
|
expect_pass "$test" "test_fileutils: write error: Bad file descriptor"
|
|
|
|
set full "${topdir}testsuite/lib.test/fileutils_full.sh"
|
|
set test "test no space left on device"
|
|
spawn $full
|
|
expect_pass "$test" "test_fileutils: write error: No space left on device"
|