Differences From Artifact [7cf892b486]:
- Executable file utils/mt_xterm — part of check-in [c32787f5bc] at 2013-08-01 00:32:17 on branch v1.55 — Added ability to override xterm and html viewer. Added sourcing of megatest.{sh,csh} on start of xterm. Everything but actual running of steps implemented for run/re-run of steps (user: mrwellan, size: 149) [annotate] [blame] [check-ins using] [more...]
To Artifact [40d98efdc8]:
- Executable file utils/mt_xterm — part of check-in [9d294a320e] at 2013-08-22 14:13:42 on branch v1.55 — Added tweak to preserve DISPLAY var when loading xterm and suppressed some errors on accessing a read-only testdat.db (user: mrwellan, size: 202) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | + + | #!/bin/bash MT_TMPDISPLAY=$DISPLAY if [ -e megatest.sh ];then source megatest.sh fi export DISPLAY=$MT_TMPDISPLAY if [ x"$MT_XTERM_CMD" == "x" ];then exec xterm "$@" else exec $MT_XTERM_CMD fi |