Overview
Comment: | Added placeholder for script runner mtrunscript |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.55 |
Files: | files | file ages | folders |
SHA1: |
9890845462dbcf2a7bd74f03d6fcfeef |
User & Date: | matt on 2013-10-30 07:41:43 |
Other Links: | branch diff | manifest | tags |
Context
2013-10-31
| ||
17:30 | Minor refactor for performance in test control panel check-in: 8013462115 user: mrwellan tags: v1.55 | |
00:59 | Testing broken up queries vs. monolithic queries check-in: bdf6223bb0 user: matt tags: test-broken-up-queries | |
2013-10-30
| ||
07:41 | Added placeholder for script runner mtrunscript check-in: 9890845462 user: matt tags: v1.55 | |
2013-10-29
| ||
00:01 | Fixed couple typos check-in: 76e1588a7c user: matt tags: v1.55, v1.5513-1 | |
Changes
Added utils/mtrunscript version [e78e46f29a].
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 | #!/usr/bin/env bash # Copyright 2012, Matthew Welland. # # This program is made available under the GNU GPL version 2.0 or # greater. See the accompanying file COPYING for details. # # This program is distributed WITHOUT ANY WARRANTY; without even the # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR # PURPOSE. # # VERSION: # set -e # set -u # set -x # Usage: mtrunscript scriptname params # # Look for scriptname in this order # # $MT_TEST_RUN_DIR/scripts => $MT_RUN_AREA_HOME/scripts # => $MT_RUN_AREA_HOME/../scripts => $PATH # # In each area look for the script with the name like this: # # scriptname_$TARGET[1]_$TARGET[2]_...$TARGET[n]_$MT_TESTNAME_$MT_ITEMPATH(s#/#_) # echo "NOT IMPLEMENTED YET!" exit case "x$1" in # repo xrep*) fsl_dbinit case "x$2" in xhelp) fsl_help exit ;; # repo get xget) hook_pre_repo_get "$@" fsl_repo_get $3 $4 hook_post_repo_get "$@" exit ;; xaddarea) fsl_add_area $3 $4 exit ;; xdroparea) fsl_remove_area $3 exit ;; xdbinit) fsl_dbinit exit ;; xls|xlist) shift shift fsl_ls "$@" exit ;; xcreate) hook_pre_repo_create fsl_repo_create $3 $4 $5 $6 hook_post_repo_create exit ;; ximport) fsl_repo_import $3 $4 $5 exit ;; *) fsl_help exit esac ;; "xmv") if [ "x$2" = "x-f" ];then # echo "Force mode" fsl_force=1 shift shift # change this to exec when happy! # fsl mv -f f1 [f2 f3...] targ fsl_mv "$@" # args=("$@") # echo $@ -> echo $@ # use $# variable to print out # number of arguments passed to the bash script # echo Number of arguments passed: $# -> echo Number of arguments passed: $# exit else # echo No force shift fsl_mv "$@" exit fi ;; xtim*) fsl_fork_find shift $FOSSILEXE timeline "$@" | sed -e :a -e '$!N;s/\n / /;ta' -e 'P;D' exit ;; # leaves output needs to be niceified, no need for a function xle*) fsl_fork_find shift $FOSSILEXE leaves "$@" | sed -e :a -e '$!N;s/\n / /;ta' -e 'P;D' exit ;; # changes and status xcha* | xstat*) fsl_fork_find fsl_conflicts "$@" rm -f $CONFLICT_FLAG_FILE exit ;; # ci/commit xci | xcom*) fsl_conflicts changes "$@" trap "$FOSSILUTIL releaselock $FSLUTIL_PARAMS" SIGINT # Set up for remote locking if [ ! -e $CONFLICT_FLAG_FILE ]; then rm -f $CONFLICT_FLAG_FILE read -p "ERROR: Conflicts detected. Type \"yes\" to continue: " -e ANSWER if [ $ANSWER = "yes" ]; then $FOSSILUTIL commitlock $FSLUTIL_PARAMS $FOSSILEXE "$@" $FOSSILUTIL releaselock $FSLUTIL_PARAMS else exit 1 fi else $FOSSILUTIL commitlock $FSLUTIL_PARAMS $FOSSILEXE "$@" $FOSSILUTIL releaselock $FSLUTIL_PARAMS fi exit ;; xtag) case "x$2" in xadd | xcancel) $FOSSILEXE "$@" $FOSSILEXE sync exit ;; *) $FOSSILEXE "$@" exit ;; esac ;; # add mention of repo to help "xhelp") if [ $# -gt 1 ]; then case "x$2" in xrepo) fsl_help exit ;; *) $FOSSILEXE "$@" ;; esac else $FOSSILEXE help | sed -e 's/sync/sync repo/' fi exit ;; xup* | xco) fsl_fork_find $FOSSILEXE "$@" exit ;; esac exec $FOSSILEXE "$@" |