Bug 908426
| Summary: | xinit: unable to connect to X server: Connection refused | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | [Retired] Red Hat Hardware Certification Program | Reporter: | Caspar Zhang <czhang> | ||||||
| Component: | Test Suite (tests) | Assignee: | Greg Nichols <gnichols> | ||||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Red Hat Kernel QE team <kernel-qe> | ||||||
| Severity: | high | Docs Contact: | |||||||
| Priority: | unspecified | ||||||||
| Version: | 1.7.0 | CC: | bbrock, czhang, gnichols, qcai, rlandry | ||||||
| Target Milestone: | --- | ||||||||
| Target Release: | --- | ||||||||
| Hardware: | All | ||||||||
| OS: | Linux | ||||||||
| Whiteboard: | |||||||||
| Fixed In Version: | v7-1.7.0-R11 | Doc Type: | Bug Fix | ||||||
| Doc Text: | Story Points: | --- | |||||||
| Clone Of: | 907795 | Environment: | |||||||
| Last Closed: | 2013-03-28 06:21:19 UTC | Type: | Bug | ||||||
| Regression: | --- | Mount Type: | --- | ||||||
| Documentation: | --- | CRM: | |||||||
| Verified Versions: | Category: | --- | |||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||
| Embargoed: | |||||||||
| Bug Depends On: | 907795 | ||||||||
| Bug Blocks: | 904887 | ||||||||
| Attachments: |
|
||||||||
|
Description
Caspar Zhang
2013-02-06 16:50:45 UTC
It looks like the options and some of the parsing may have changed in the startx script. Changing from startx to xinit in video.py appears to allow the right things to happen.
--- video.py.orig 2013-02-20 17:16:30.630000395 -0500
+++ video.py 2013-02-20 17:16:54.364532894 -0500
@@ -118,7 +118,8 @@
def startx(self):
try: os.remove(self.tmpFile)
except: pass
- startxCommand = "startx ./x11perftest -- :2 "
+ # In RHEL7 xinit works better here
+ startxCommand = "xinit ./x11perftest -- :2 "
if self.Xconfigfile:
startxCommand += "%s %s " % (self.Xconfig_flag, self.Xconfigfile)
if self.depth:
There may be an incantation that works with startx but I have not figured it out yet.
Created attachment 700279 [details]
v7 output log from /var/log/v7/runs/1/video
Created attachment 700281 [details]
v7-results from /var/v7/store
|