~xdavidwu/apkbuilds

ref: 1d309dcaa3e53f958c01c914560372ede21e49ff apkbuilds/abduco/fix-tests.patch -rw-r--r-- 638 bytes
1d309dcaPinghao Wu 7zip-unrar: sync from aports to 24.08 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Without this change pgrep seems to return the PID of the abduco process
spawned in the previous line because it may not be removed yet. Removing
the pgrep invocation is not the best solution but good enough for now.

diff -upr abduco-0.6.orig/testsuite.sh abduco-0.6/testsuite.sh
--- abduco-0.6.orig/testsuite.sh	2019-02-14 11:33:19.521290879 +0100
+++ abduco-0.6/testsuite.sh	2019-02-14 11:33:29.361298623 +0100
@@ -55,7 +55,6 @@ expected_abduco_detached_output() {
 
 check_environment() {
 	[ "`$ABDUCO | wc -l`" -gt 1 ] && echo Abduco session exists && exit 1;
-	pgrep abduco && echo Abduco process exists && exit 1;
 	return 0;
 }