summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtcwg-llvm-testsuite.sh16
1 files changed, 4 insertions, 12 deletions
diff --git a/tcwg-llvm-testsuite.sh b/tcwg-llvm-testsuite.sh
index e1af1d93..5bd51e81 100755
--- a/tcwg-llvm-testsuite.sh
+++ b/tcwg-llvm-testsuite.sh
@@ -51,9 +51,6 @@ while [ "$#" -gt 0 ]; do
esac
done
-# Dirs
-REFDIR="$HOME/llvm-reference"
-
# Dump
echo "WORKSPACE = $WORKSPACE"
echo "REFDIR = $REFDIR"
@@ -67,15 +64,10 @@ LOGBASE="$WORKSPACE/tcwg-llvm"
LOGEXT="txt"
# Checkout
-{
- flock -s 9
- git clone http://llvm.org/git/test-suite.git \
- --reference "$REFDIR/test-suite" \
- "$WORKSPACE/test-suite" |& tee "$LOGBASE-clone.$LOGEXT"
- git clone http://llvm.org/git/lnt.git \
- --reference "$REFDIR/lnt" \
- "$WORKSPACE/lnt" |& tee -a "$LOGBASE-clone.$LOGEXT"
-} 9>"$REFDIR.lock"
+git clone https://github.com/llvm/llvm-test-suite.git \
+ "$WORKSPACE/test-suite" |& tee "$LOGBASE-clone.$LOGEXT"
+git clone https://github.com/llvm/llvm-lnt.git \
+ "$WORKSPACE/lnt" |& tee -a "$LOGBASE-clone.$LOGEXT"
# Prepare
python=$(which python2)