• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3# Copyright 2014 Divya Kothari <divya.s.kothari@gmail.com>
4# Copyright 2014 Naha Maggu <maggu.neha@gmail.com>
5
6[ -f testing.sh ] && . testing.sh
7
8#testing "name" "command" "result" "infile" "stdin"
9
10echo "" >foo
11testing "fails on non-existent file" "link foo/foo baz 2>/dev/null || echo GOOD" "GOOD\n" "" ""
12rm -f foo bar
13
14echo file1 > file
15testing "create_hardlink" "link file hlink && [ file -ef hlink ] &&
16          echo 'yes'; rm  -rf hlink" "yes\n" "" ""
17
18echo hlink1 > hlink
19set +e
20testing "preserves_hardlinks" "link file hlink 2>/dev/null || echo 'yes'; rm -rf hlink" \
21          "yes\n" "" ""
22
23echo file1 > file
24testing "create_hardlink_and_remove_sourcefile" "link file hlink &&
25          [ file -ef hlink ] && rm -rf file && [ -f hlink ] && echo 'yes'; rm -f file hlink" \
26          "yes\n" "" ""
27