From 85ebd075c4afc0e010057e968f7737d4c5c7c19b Mon Sep 17 00:00:00 2001 From: Jean-Louis Fuchs Date: Mon, 23 Oct 2017 22:29:49 +0200 Subject: community/girara: run test with xvfb, disable tput * COLOR=0 (disabling tput) wasn't set for all make calls --- community/girara/test.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 community/girara/test.sh (limited to 'community/girara/test.sh') diff --git a/community/girara/test.sh b/community/girara/test.sh new file mode 100755 index 0000000000..690b3c5a38 --- /dev/null +++ b/community/girara/test.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +Xvfb :4242 & +PID=$! +export DISPLAY=:4242 +if make test COLOR=0; then + kill $PID + return 0 +else + kill $PID + return 1 +fi -- cgit v1.2.3