From a8b23c83998c7964f8898c39784ac186a0216c3f Mon Sep 17 00:00:00 2001 From: netblue30 Date: Fri, 11 Nov 2016 07:47:46 -0500 Subject: testing --- test/fs_overlay.exp | 66 ----------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100755 test/fs_overlay.exp (limited to 'test/fs_overlay.exp') diff --git a/test/fs_overlay.exp b/test/fs_overlay.exp deleted file mode 100755 index b7eeba80f..000000000 --- a/test/fs_overlay.exp +++ /dev/null @@ -1,66 +0,0 @@ -#!/usr/bin/expect -f - -set timeout 10 -spawn $env(SHELL) -match_max 100000 - -send -- "rm -f /tmp/firejail-overlay-test;pwd\r" -expect { - timeout {puts "TESTING ERROR 0\n";exit} - "home" -} - -send -- "ls > /tmp/firejail-overlay-test;pwd\r" -expect { - timeout {puts "TESTING ERROR 1\n";exit} - "home" -} - -send -- "firejail --noprofile --overlay\r" -expect { - timeout {puts "TESTING ERROR 2\n";exit} - "not available for kernels older than 3.18" {puts "\nTESTING: overlayfs not available\n"; exit} - "Error: --overlay option is not available on Grsecurity systems" {puts "\nTESTING: overlayfs not available\n"; exit} - "Child process initialized" {puts "found\n"} -} -sleep 1 - -send -- "echo xyzxyzxyz > /tmp/firejail-overlay-test;pwd\r" -expect { - timeout {puts "TESTING ERROR 3\n";exit} - "home" -} -sleep 1 - -send -- "cat /tmp/firejail-overlay-test;pwd\r" -expect { - timeout {puts "TESTING ERROR 4\n";exit} - "xyzxyzxyz" -} -expect { - timeout {puts "TESTING ERROR 4.1\n";exit} - "home" -} -sleep 1 - -send -- "exit\r" -sleep 2 - -send -- "cat /tmp/firejail-overlay-test;pwd\r" -expect { - timeout {puts "TESTING ERROR 5\n";exit} - "xyzxyzxyz" {puts "TESTING ERROR 5.1\n";exit} - "home" -} - -sleep 1 -send -- "rm -f /tmp/firejail-overlay-test;pwd\r" -expect { - timeout {puts "TESTING ERROR 0\n";exit} - "home" -} - - -sleep 1 -puts "all done \n" - -- cgit v1.2.3-54-g00ecf