view tests/mkfifo.test @ 1670:31dded5e0e09 draft

bootchartd: Removing wrong free call to non-malloc'ed string.
author Luis Felipe Strano Moraes <luis.strano@gmail.com>
date Thu, 22 Jan 2015 16:29:34 -0600
parents 8700cbe1cb29
children
line wrap: on
line source

#!/bin/bash

[ -f testing.sh ] && . testing.sh

#testing "name" "command" "result" "infile" "stdin"

testing "mkfifo" "mkfifo one && [ -p one ] && echo yes" "yes\n" "" ""
rm one

touch existing
testing "mkfifo existing" \
	"mkfifo existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" ""
rm existing

testing "mkfifo one two" \
	"mkfifo one two && [ -p one ] && [ -p two ] && echo yes" "yes\n" "" ""
rm one two

umask 123
testing "mkfifo (default permissions)" \
	"mkfifo one && stat -c %a one" "644\n" "" ""
rm one

umask 000

testing "mkfifo -m 124" \
	"mkfifo -m 124 one && stat -c %a one" "124\n" "" ""
rm -f one