From 0e8c0ed6f0698052134e7ffe30ec2e0a2a10d779 Mon Sep 17 00:00:00 2001 From: Jeffrey Finkelstein Date: Sun, 19 Jan 2025 16:11:04 -0500 Subject: [PATCH] build: remove timeout from seq test cases --- util/build-gnu.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/util/build-gnu.sh b/util/build-gnu.sh index 150d2caa6..e05341b22 100755 --- a/util/build-gnu.sh +++ b/util/build-gnu.sh @@ -197,9 +197,6 @@ sed -i "s|warning: unrecognized escape|warning: incomplete hex escape|" tests/st sed -i 's|timeout |'"${SYSTEM_TIMEOUT}"' |' tests/tail/follow-stdin.sh -# Add specific timeout to tests that currently hang to limit time spent waiting -sed -i 's|\(^\s*\)seq \$|\1'"${SYSTEM_TIMEOUT}"' 0.1 seq \$|' tests/seq/seq-precision.sh tests/seq/seq-long-double.sh - # Remove dup of /usr/bin/ and /usr/local/bin/ when executed several times grep -rlE '/usr/bin/\s?/usr/bin' init.cfg tests/* | xargs -r sed -Ei 's|/usr/bin/\s?/usr/bin/|/usr/bin/|g' grep -rlE '/usr/local/bin/\s?/usr/local/bin' init.cfg tests/* | xargs -r sed -Ei 's|/usr/local/bin/\s?/usr/local/bin/|/usr/local/bin/|g'