#! /bin/sh # Test merge of common entries with --more-than=1 and --omit-header. tmpfiles="" trap 'rm -fr $tmpfiles' 1 2 3 15 tmpfiles="$tmpfiles mcomm-test10.in1 mcomm-test10.in2" cat < mcomm-test10.in1 msgid "" msgstr "" "Project-Id-Version: GNU one 1.2.3\n" "POT-Creation-Date: 2000-12-11 20:49+0100\n" "PO-Revision-Date: 2000-03-18 15:25+01:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: first.c:123 msgid "1" msgstr "1x" EOF cat < mcomm-test10.in2 msgid "" msgstr "" "Project-Id-Version: GNU one 1.2.3\n" "POT-Creation-Date: 2000-12-11 20:49+0100\n" "PO-Revision-Date: 2000-03-18 15:25+01:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-1\n" "Content-Transfer-Encoding: 8bit\n" #: hunt.c:759 msgid "1" msgstr "" EOF tmpfiles="$tmpfiles mcomm-test10.out" : ${MSGCOMM=msgcomm} ${MSGCOMM} --more-than=1 --no-location --omit-header -o mcomm-test10.out \ mcomm-test10.in1 mcomm-test10.in2 test $? = 0 || { rm -fr $tmpfiles; exit 1; } tmpfiles="$tmpfiles mcomm-test10.ok" cat << EOF > mcomm-test10.ok msgid "1" msgstr "1x" EOF : ${DIFF=diff} ${DIFF} mcomm-test10.ok mcomm-test10.out result=$? rm -fr $tmpfiles exit $result sd/diff/tests/lib/libc/sys/t_mkfifo.c'>diff
AgeCommit message (Collapse)Author
2019-06-20Add mkfifo{,at}(2) mode in mknod{,at}(2) as requested by POSIXkamil
mknod with mode & S_IFIFO and dev=0 shall behave like mkfifo. Update the documentation to reflect this state. Add ATF tests. This is an in-kernel implementation as typically user-space programs use mkfifo(2) directly, however whenever there is need to bypass libc (like in valgrind) then portable POSIX software calls the mknod syscall. Noted on tech-kern@ by Greg Troxel.
2011-11-02Fix a test case to test what the comment says.jruoho
2011-07-07Add the syscall tests back. Couple of files and tests were also renamed forjruoho
consistency. All of these now mimic the libc structure.