aboutsummaryrefslogtreecommitdiffstats
path: root/test/overlay/overlay.sh
diff options
context:
space:
mode:
Diffstat (limited to 'test/overlay/overlay.sh')
-rwxr-xr-xtest/overlay/overlay.sh62
1 files changed, 0 insertions, 62 deletions
diff --git a/test/overlay/overlay.sh b/test/overlay/overlay.sh
deleted file mode 100755
index 2015942d9..000000000
--- a/test/overlay/overlay.sh
+++ /dev/null
@@ -1,62 +0,0 @@
1#!/bin/bash
2# This file is part of Firejail project
3# Copyright (C) 2014-2023 Firejail Authors
4# License GPL v2
5
6export MALLOC_CHECK_=3
7export MALLOC_PERTURB_=$(($RANDOM % 255 + 1))
8export LC_ALL=C
9
10echo "TESTING: overlay fs (test/overlay/fs.exp)"
11rm -fr ~/_firejail_test_*
12./fs.exp
13rm -fr ~/_firejail_test_*
14
15echo "TESTING: overlay named fs (test/overlay/fs-named.exp)"
16rm -fr ~/_firejail_test_*
17./fs-named.exp
18rm -fr ~/_firejail_test_*
19
20echo "TESTING: overlay tmpfs fs (test/overlay/fs-tmpfs.exp)"
21rm -fr ~/_firejail_test_*
22./fs-tmpfs.exp
23rm -fr ~/_firejail_test_*
24
25if command -v firefox
26then
27 echo "TESTING: overlay firefox"
28 ./firefox.exp
29else
30 echo "TESTING SKIP: firefox not found"
31fi
32
33if command -v firefox
34then
35 echo "TESTING: overlay firefox x11 xorg"
36 ./firefox.exp
37else
38 echo "TESTING SKIP: firefox not found"
39fi
40
41# check xpra/xephyr
42if command -v xpra
43then
44 echo "xpra found"
45else
46 echo "xpra not found"
47 if command -v Xephyr
48 then
49 echo "Xephyr found"
50 else
51 echo "TESTING SKIP: xpra and/or Xephyr not found"
52 exit
53 fi
54fi
55
56if command -v firefox
57then
58 echo "TESTING: overlay firefox x11"
59 ./firefox-x11.exp
60else
61 echo "TESTING SKIP: firefox not found"
62fi