From 03afcbff573da7e7a1a89a60b05d827ff840d553 Mon Sep 17 00:00:00 2001 From: netblue30 Date: Thu, 29 Oct 2015 08:58:11 -0400 Subject: testing --- test/seccomp-dualfilter.exp | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 test/seccomp-dualfilter.exp (limited to 'test') diff --git a/test/seccomp-dualfilter.exp b/test/seccomp-dualfilter.exp new file mode 100755 index 000000000..b497be5ea --- /dev/null +++ b/test/seccomp-dualfilter.exp @@ -0,0 +1,38 @@ +#!/usr/bin/expect -f + +set timeout 10 +spawn $env(SHELL) +match_max 100000 + +send -- "firejail ../src/tools/syscall_test mount\r" +expect { + timeout {puts "TESTING ERROR 0\n";exit} + "Child process initialized" +} +expect { + timeout {puts "TESTING ERROR 1\n";exit} + "before mount" +} +expect { + timeout {puts "TESTING ERROR 2\n";exit} + "after mount" {puts "TESTING ERROR 2.1\n";exit} + "parent is shutting down" +} +sleep 1 + +send -- "firejail ../src/tools/syscall_test32 mount\r" +expect { + timeout {puts "TESTING ERROR 3\n";exit} + "Child process initialized" +} +expect { + timeout {puts "TESTING ERROR 4\n";exit} + "before mount" +} +expect { + timeout {puts "TESTING ERROR 5\n";exit} + "after mount" {puts "TESTING ERROR 5.1\n";exit} + "parent is shutting down" +} + +puts "\nall done\n" -- cgit v1.2.3-54-g00ecf