Overview
Comment: | Fixed issue with disabling debugging on appropriate prefix |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 76d1b562f85ed3bc2b3dd3c749d38c7cbdf5dc3e |
User & Date: | rkeene on 2013-10-05 11:53:02 |
Other Links: | manifest | tags |
Context
2013-10-20
| ||
03:11 | Updated icon (courtesy of C. Shults) check-in: ef6ac5d932 user: rkeene tags: trunk | |
2013-10-05
| ||
11:53 | Fixed issue with disabling debugging on appropriate prefix check-in: 76d1b562f8 user: rkeene tags: trunk | |
2013-10-04
| ||
10:45 | More 64-bit test issues corrected check-in: 4e5fa96d8a user: rkeene tags: trunk | |
Changes
Modified build/test/test from [80606a5b08] to [2dc0e708ac].
54 54 cat << \_EOF_ > "${WINEPREFIX32}/update-reg" 55 55 [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\AeDebug] 56 56 "Auto"=dword:00000001 57 57 "Debugger"="false" 58 58 _EOF_ 59 59 cp "${WINEPREFIX32}/update-reg" "${WINEPREFIX64}/update-reg" 60 60 61 -regedit "${WINEPREFIX32}/update-reg" >/dev/null 2>/dev/null 62 -regedit "${WINEPREFIX64}/update-reg" >/dev/null 2>/dev/null 61 +WINEPREFIX="${WINEPREFIX32}" regedit "${WINEPREFIX32}/update-reg" >/dev/null 2>/dev/null 62 +WINEPREFIX="${WINEPREFIX64}" regedit "${WINEPREFIX64}/update-reg" >/dev/null 2>/dev/null 63 63 64 64 # Start Xvfb for X11-based tests 65 65 XVFB_PID="$( 66 66 Xvfb :31 -screen 0 800x600x24 -nolisten tcp >/dev/null 2>/dev/null & 67 67 echo "$!" 68 68 )" 69 69 DISPLAY=:31