view tests/mkfifo.test @ 1775:57f2a26fa92c draft toast

To ensure that toybox can be installed alongside busybox without confusing update-alternatives, the paths of the links installed by toybox should match those installed by busybox. This is accomplished by changing the flags of a few tools within toybox.
author Paul Barker <paul@paulbarker.me.uk>
date Sat, 04 Apr 2015 11:58:06 -0500
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