blob: 769a7b67fe4a89751f5c7ddb77cc092fa0ed8d97 [file] [log] [blame]
Isaac Dunham8b3b9aa2014-06-01 17:47:19 -05001#!/bin/bash
2
Divya Kothari207b6a62014-09-03 13:32:32 -05003# 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"
Isaac Dunham8b3b9aa2014-06-01 17:47:19 -05009
10echo "" >foo
Isaac Dunham8b3b9aa2014-06-01 17:47:19 -050011testing "link fails on non-existent file" "link foo/foo baz || echo GOOD" "GOOD\n" "" ""
12rm -f foo bar
Divya Kothari207b6a62014-09-03 13:32:32 -050013
14echo file1 > file
15testing "ln create_hardlink" "link file hlink && [ file -ef hlink ] &&
16 echo 'yes'; rm -rf hlink" "yes\n" "" ""
17
18echo hlink1 > hlink
19set +e
20testing "ln preserves_hardlinks" "link file hlink 2>/dev/null || echo 'yes'; rm -rf hlink" \
21 "yes\n" "" ""
22
23echo file1 > file
24testing "ln 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" "" ""