From: Przemyslaw Skibinski Date: Fri, 28 Oct 2016 18:40:21 +0000 (+0200) Subject: test-zstd-speed.py: default timeout changed to 1800 seconds X-Git-Tag: v1.1.1~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F433%2Fhead;p=thirdparty%2Fzstd.git test-zstd-speed.py: default timeout changed to 1800 seconds --- diff --git a/tests/test-zstd-speed.py b/tests/test-zstd-speed.py index a556b0337..23d4f477c 100755 --- a/tests/test-zstd-speed.py +++ b/tests/test-zstd-speed.py @@ -260,7 +260,7 @@ if __name__ == '__main__': parser.add_argument('--maxLoadAvg', type=float, help='maximum load average to start testing', default=0.75) parser.add_argument('--lastCLevel', type=int, help='last compression level for testing', default=5) parser.add_argument('--sleepTime', '-s', type=int, help='frequency of repository checking in seconds', default=300) - parser.add_argument('--timeout', '-t', type=int, help='timeout for executing shell commands', default=600) + parser.add_argument('--timeout', '-t', type=int, help='timeout for executing shell commands', default=1800) parser.add_argument('--dry-run', dest='dry_run', action='store_true', help='not build', default=False) parser.add_argument('--verbose', '-v', action='store_true', help='more verbose logs', default=False) args = parser.parse_args()