From ec504406b9227199acac5d9ccbec3741442b68e6 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Wed, 23 Aug 2023 07:01:51 -0300 Subject: test: disable broken sysutils strings test And limit the output of `diff` in the test to avoid logging thousands of lines of a hexdump. Likely broken by commit 3077b2d1f ("update disable-devel.inc", 2023-08-22)[1]. [1] https://github.com/netblue30/firejail/actions/runs/5945120115/job/16123622451 --- test/sysutils/strings.exp | 2 +- test/sysutils/sysutils.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'test/sysutils') diff --git a/test/sysutils/strings.exp b/test/sysutils/strings.exp index f440a7674..cec1aac69 100755 --- a/test/sysutils/strings.exp +++ b/test/sysutils/strings.exp @@ -13,7 +13,7 @@ sleep 1 send -- "firejail /usr/bin/strings /usr/bin/firejail > firejail_t2\r" sleep 1 -send -- "diff -s firejail_t1 firejail_t2\r" +send -- "diff -s firejail_t1 firejail_t2 | head\r" expect { timeout {puts "TESTING ERROR 1\n";exit} "firejail_t1 and firejail_t2 are identical" diff --git a/test/sysutils/sysutils.sh b/test/sysutils/sysutils.sh index f5567ff02..83fdae96f 100755 --- a/test/sysutils/sysutils.sh +++ b/test/sysutils/sysutils.sh @@ -137,8 +137,8 @@ fi if command -v strings then - echo "TESTING: strings" - ./strings.exp + echo "TESTING: FIXME: strings" + #./strings.exp # FIXME: Broken since commit 3077b2d1f else echo "TESTING SKIP: strings not found" fi -- cgit v1.2.3-54-g00ecf