From cf7f8e5bbec83da1bb62075968bc78c86414c245 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Fri, 15 Nov 2019 12:48:20 -0500 Subject: testsuite: Skip T17414 on Linux It is typical for $TMP to be a small tmpfson Linux. This test will fail in such cases since we must create a file larger than the filesystem. See #17459. --- libraries/base/tests/IO/all.T | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libraries/base') diff --git a/libraries/base/tests/IO/all.T b/libraries/base/tests/IO/all.T index 8ca136adef..bfc6a090e9 100644 --- a/libraries/base/tests/IO/all.T +++ b/libraries/base/tests/IO/all.T @@ -136,5 +136,9 @@ test('T7853', normal, compile_and_run, ['']) test('T17414', [when(wordsize(32), skip), when(opsys('mingw32'), fragile(17453)), + # It is common for tmpfs to be mounted to a small tmpfs on modern Linux + # distributions. This test needs to create a large file which will exceed the + # size of this filesystem onsequently we must skip it (see #17459). + when(opsys('linux'), skip), high_memory_usage], compile_and_run, ['']) -- cgit v1.2.1