From 6b92f685ed60d846419e657827e091cf3329517e Mon Sep 17 00:00:00 2001 From: netblue30 Date: Tue, 10 Oct 2017 12:23:57 -0400 Subject: private-lib --- test/private-lib/private-lib.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 test/private-lib/private-lib.sh (limited to 'test/private-lib/private-lib.sh') diff --git a/test/private-lib/private-lib.sh b/test/private-lib/private-lib.sh new file mode 100755 index 000000000..26a8d7420 --- /dev/null +++ b/test/private-lib/private-lib.sh @@ -0,0 +1,21 @@ +#!/bin/bash +# This file is part of Firejail project +# Copyright (C) 2014-2017 Firejail Authors +# License GPL v2 + +export MALLOC_CHECK_=3 +export MALLOC_PERTURB_=$(($RANDOM % 255 + 1)) +LIST="evince galculator gnome-calculator hexchat kcalc ktorrent leafpad mousepad qbittorrent transmission-gtk transmission-qt xcalc" + + +for app in $LIST; do + which $app + if [ "$?" -eq 0 ]; + then + echo "TESTING: private-lib $app" + ./$app.exp + else + echo "TESTING SKIP: $app not found" + fi +done +exit -- cgit v1.2.3-54-g00ecf