Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
LSH
lsh
Commits
c5b32694
Commit
c5b32694
authored
Jan 14, 2003
by
Niels Möller
Browse files
New file.
Rev: misc/xenofarm.sh:1.1
parent
ab22c3e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
misc/xenofarm.sh
0 → 100755
View file @
c5b32694
#! /bin/sh
# Driver the xenofarm test compilation. Used together with
# lsh-server.pike, source-transform.sh and result-parser.pike in
# the lsh xenofarm project.
# Loosely based on the xenofarm.sh script in lyskom-server.
# Copyright 2002, 2003 Niels Möller, Lysator Academic Computer Association
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
cfgargs
=
makeargs
=
while
[
$#
-gt
0
]
do
case
"
$1
"
in
--cfg
)
shift
;
cfgargs
=
"
$1
"
;
shift
;;
--make
)
shift
;
makeargs
=
"
$1
"
;
shift
;;
*
)
echo
$0
: unsupported argument
$1
>
&2
;
exit
1
;;
esac
done
rm
-rf
r
mkdir
r
exec
>
r/shlog.txt 2>&1
BASE
=
`
echo
lsh-
*
.tar.gz |
sed
's/.tar.gz$//'
`
VERS
=
`
echo
"
$BASE
"
|
sed
's/^lsh-//'
`
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment