]> AND Private Git Repository - loba.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
run-all: check existence of platform files.
authorArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 7 Mar 2012 11:22:46 +0000 (12:22 +0100)
committerArnaud Giersch <arnaud.giersch@iut-bm.univ-fcomte.fr>
Wed, 7 Mar 2012 11:22:50 +0000 (12:22 +0100)
Experimentations/run-all

index c7115502b587bb86980f19d71e154a419ece9ef9..5b80fbf49f0f40f2491b4bf81aa2f5ab5a327195 100755 (executable)
@@ -74,7 +74,10 @@ COMMON_OPTS=(
     "${MORE_ARGS[@]}"
 )
 
-test -x "$LOBA" || die "command not found: \"$LOBA\""
+test -f "$LOBA" && test -x "$LOBA" || die "command not found: \"$LOBA\""
+for plat in "${PLATFORMS[@]}"; do
+    test -f "$plat" && test -r "$plat" || die "file not found: \"$plat\""
+done
 
 log "Results put in: \"$RESULTS\"."