aboutsummaryrefslogtreecommitdiff
path: root/tests/mkfifo.test
blob: faaad1ffe101192f253d5e3a7ea7c591dac80d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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 "existing" \
	"mkfifo existing 2> /dev/null || [ -f existing ] && echo yes" "yes\n" "" ""
rm existing

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

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

umask 000

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