Changeset 723ce99 in mainline
- Timestamp:
- 2014-04-24T08:14:30Z (10 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6d5da743
- Parents:
- 84b89095
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
contrib/tools/random_check.sh
r84b89095 r723ce99 100 100 ( 101 101 echo " Cleaning after previous build." >&2 102 make distclean -j$ PARALLELISM2>&1 || exit 1102 make distclean -j$JOBS 2>&1 || exit 1 103 103 104 104 … … 110 110 while true; do 111 111 RETRIES=$(( $RETRIES + 1 )) 112 if [ $RETRIES -ge 20]; then112 if [ $RETRIES -ge $MAX_RETRIES ]; then 113 113 echo " Failed to generate random configuration with given constraints after $RETRIES tries." >&2 114 114 exit 2 … … 144 144 echo -n " Building ($BASIC_CONFIG)... " >&2 145 145 146 make -j$ PARALLELISM2>&1146 make -j$JOBS 2>&1 147 147 if [ $? -eq 0 ]; then 148 148 echo "okay." >&2
Note:
See TracChangeset
for help on using the changeset viewer.