File: no_pristine.sh

package info (click to toggle)
darcs 2.0.2-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,400 kB
  • ctags: 1,048
  • sloc: haskell: 24,937; perl: 9,736; sh: 3,369; ansic: 1,913; makefile: 17; xml: 14
file content (32 lines) | stat: -rw-r--r-- 555 bytes parent folder | download
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
29
30
31
32
#!/usr/bin/env bash

# This test script, originally written by David Roundy and Ian Lynagh is in
# the public domain.

set -ev

rm -rf temp1

mkdir temp1
cd temp1

darcs initialize --no-pristine-tree
echo ALL --author Testing Person >> _darcs/prefs/defaults
echo ALL --ignore-times >> _darcs/prefs/defaults

echo foo > bar
darcs add bar
darcs record -a -m baz bar

date > bar
darcs record --no-test -a -m 'patch 2'

darcs setpref test 'echo hello world'
darcs record -a -m 'setpref'

date >> bar
darcs record -a -m 'record with test'

cd ..

rm -rf temp1