FishEye
Search
Changelog
Browse
Help
PVFS
:/
run-nightly-setup
Quick Search:
Context
Displaying 3 lines either side each change.
None
| Less |
More
|
Full
Other Diffs
1.1.4.3
1.1.4.2
1.1.4.1
1.1.2.4
1.1.2.3
1.1.2.2
1.1.2.1
1.1
1.1.4.3
1.1.4.2
1.1.4.1
1.1.2.4
1.1.2.3
1.1.2.2
1.1.2.1
1.1
Ignore
Blank Lines
Whitespace:
None
Significant
All
Expand:
default (kv)
kv
k
v
o
Diff
1.1.4.1
1.1.4.2
cu-security-branch:nlmills:20100729223052
run-nightly-setup
1
1
#!/bin/sh
2
2
3
+
if [ $# -lt 1 ]; then
4
+
echo "Usage: $0 <tagnames>"
5
+
echo " e.g. $0 HEAD Orange-Branch"
6
+
exit 0
7
+
fi
8
+
CVSTAGS=$*
9
+
10
+
echo "Running nightly tests for ${CVSTAGS}"
11
+
3
12
cvsroot=:pserver:anonymous@cvs.parl.clemson.edu:/anoncvs
4
13
run_nightly_scripts="pvfs2/run-nightly pvfs2/maint/build pvfs2/test/automated"
5
14
…
14
23
exit 1
15
24
fi
16
25
26
+
17
27
cd ~+/pvfs2
18
-
./run-nightly
Orange
-
Branch
28
+
./run-nightly
$
CVSTAGS
19
29
20
30
exit