Differences From Artifact [2b7bb890ec]:
- Executable file build/test/test — part of check-in [75999463a7] at 2011-06-24 18:44:08 on branch trunk — Upgraded test suite to use Tcl/Tk 8.5.10 (user: rkeene, size: 11612) [annotate] [blame] [check-ins using]
To Artifact [bf30a5a38f]:
- Executable file
build/test/test
— part of check-in
[250028d1d6]
at
2011-08-02 23:49:37
on branch trunk
— Added more cross-compiler build scripts
Added more cross-compiled tests (user: rkeene, size: 12738) [annotate] [blame] [check-ins using]
︙ | |||
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 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 | + + + + + + + + + + + + + + - + | if echo "${file}" | grep -- '-build.log$' >/dev/null; then continue fi rm -f "${file}" done # Disable WINE debugging WINEPREFIX="${TESTDIR}/.wine" export WINEPREFIX rm -rf "${WINEPREFIX}" mkdir "${WINEPREFIX}" cat << \_EOF_ > "${WINEPREFIX}/update-reg" [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\AeDebug] "Auto"=dword:00000001 "Debugger"="false" _EOF_ regedit "${WINEPREFIX}/update-reg" >/dev/null 2>/dev/null # Start Xvfb for X11-based tests XVFB_PID="$( Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null & echo "$!" )" DISPLAY=:31 export DISPLAY failed="" |
︙ | |||
92 93 94 95 96 97 98 | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | - - + + + + + + + + | linux-mipsel-min|linux-mipsel-min-kitdll) kitcreator="./build/make-kit-mipsel" runnable="0" xcompile="1" notk="1" iszip="1" ;; |
︙ | |||
234 235 236 237 238 239 240 241 242 243 244 245 246 247 | 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | + + + + + + + + + | # Several build scripts rely on minkit to work if grep './build/make-minkit' "${kitcreator}" >/dev/null 2>/dev/null; then echo " cat << \__EOF__ > ./build/make-minkit" >> "${buildlog}" sed 's@^@ @' './build/make-minkit' >> "${buildlog}" echo " __EOF__" >> "${buildlog}" echo '' >> "${buildlog}" fi # Several build scripts rely on make-kit-crosscompile to work if grep './build/make-kit-crosscompile' "${kitcreator}" >/dev/null 2>/dev/null; then echo " cat << \__EOF__ > ./build/make-kit-crosscompile" >> "${buildlog}" sed 's@^@ @' './build/make-kit-crosscompile' >> "${buildlog}" echo " __EOF__" >> "${buildlog}" echo '' >> "${buildlog}" fi echo " cat << \__EOF__ > ${kitcreator}" >> "${buildlog}" sed 's@^@ @' "${kitcreator}" >> "${buildlog}" echo " __EOF__" >> "${buildlog}" echo '' >> "${buildlog}" fi echo " \"${kitcreator}\" \"${version}\" ${args}" >> "${buildlog}" echo '' >> "${buildlog}" |
︙ |