Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

guess the xorg path in tests #308

Merged
merged 4 commits into from
Apr 23, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions tests/xorg-test-run.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,25 @@
#!/bin/sh
#!/bin/bash
jat001 marked this conversation as resolved.
Show resolved Hide resolved

# Test that Xorg can load the compiled modules

# X server to run
if [ -z "$XORG" ]; then
if [ -x /usr/lib/xorg/Xorg ]; then
# Don't use the Ubuntu wrapped server
XORG=/usr/lib/xorg/Xorg
else
xorg_paths=(
/usr/local/libexec/Xorg
/usr/libexec/Xorg
/usr/lib/xorg/Xorg
/usr/lib/Xorg
/usr/bin/Xorg
)

for path in "${xorg_paths[@]}"; do
if [ -x "$path" ]; then
XORG=$path
break
fi
done

if [ -z "$XORG" ]; then
jat001 marked this conversation as resolved.
Show resolved Hide resolved
XORG=Xorg
fi
fi
Expand Down