Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
4f5bbd82
Commit
4f5bbd82
authored
Sep 27, 2020
by
Christoph Cullmann
🐮
Browse files
remove old helper scripty
parent
72530002
Changes
1
Hide whitespace changes
Inline
Side-by-side
run-tests-in-xvfb.sh
deleted
100755 → 0
View file @
72530002
#!/bin/bash
# want build dir as first parameter
BUILDDIR
=
$1
# go to build dir or die
cd
$BUILDDIR
||
exit
1
# start Xvfb
Xvfb :7
-ac
>
/dev/null 2>&1 &
# save pid for later kill
XPID
=
$!
# wait bit for X
echo
"Waiting for Xvfb with pid
$XPID
to launch..."
sleep
2
# execute tests on that screen
DISPLAY
=
:7 make
test
# kill the poor X again
echo
"Killing Xvfb with pid
$XPID
..."
kill
$XPID
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment