diff options
author | Marius Kintel <marius@kintel.net> | 2013-02-02 22:25:13 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-02-02 22:25:13 (GMT) |
commit | e5448f5e69f6d59256ba1816acf2647e808e10db (patch) | |
tree | 565c87e051833daa1c0eed7ffe45533fcf05c2fb /tests/virtualfb.sh | |
parent | eb30d42b5dd3ed5bb37336ed46a59eabaca81e06 (diff) | |
parent | 18e3a7d9ad8e052d626ac250a9c9d5f36f29a54d (diff) |
Merge pull request #270 from openscad/misc_updates
Big Endian binary STL fix + misc updates
Diffstat (limited to 'tests/virtualfb.sh')
-rwxr-xr-x | tests/virtualfb.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/virtualfb.sh b/tests/virtualfb.sh index 3c0cf0e..e745765 100755 --- a/tests/virtualfb.sh +++ b/tests/virtualfb.sh @@ -13,8 +13,9 @@ if [ ! $VFB_BINARY ]; then exit 1 fi -DISPLAY=:98 -$VFB_BINARY $DISPLAY -screen 0 800x600x24 &> virtualfblog & +DISPLAY=`echo | awk 'BEGIN{srand();} {printf ":%.0f", rand()*1000+100};'` +#DISPLAY=:98 +$VFB_BINARY $DISPLAY -screen 0 800x600x24 &> virtualfb.log & echo PID=$! " " echo DISPLAY=$DISPLAY # trap "kill -KILL $xpid ||:" EXIT |