aboutsummaryrefslogtreecommitdiff
path: root/tests/install.test
blob: 228d24709d7cc834de06b060a6a96570ba4f6328 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# TODO: fill this out.
# TODO: "make install" means something else, so no test_install, only callable
# from "make tests"...

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

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

dd if=/dev/urandom of=random bs=64 count=1 2> /dev/null
testing "install -D exists" \
  "mkdir -p a; touch a/b; install -D random a/b && cmp random a/b && echo yes" \
  "yes\n" "" ""
rm -rf a random