summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/io/largefile
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@digia.com>2014-10-21 15:02:28 +0200
committerMorten Johan Sørvig <morten.sorvig@digia.com>2014-10-22 23:00:41 +0200
commit047f4c4d799f46c8c0aa44b594d3afe416758280 (patch)
treee9625bb5246d29ce0f0aa7b1a4806477fb9ae791 /tests/auto/corelib/io/largefile
parent1510411a38cdf0359e2353d7f52d1795294a1d45 (diff)
Further limit the sparse file testing on OS X
At 4GiB the CI test system still spends a considerable amount of time testing this. Tune the size down to 16 MiB. Change-Id: I417aa6829fcc734e5de4d7d34e503190f6b291e5 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'tests/auto/corelib/io/largefile')
-rw-r--r--tests/auto/corelib/io/largefile/tst_largefile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/corelib/io/largefile/tst_largefile.cpp b/tests/auto/corelib/io/largefile/tst_largefile.cpp
index bedbeb6181..62410f7c80 100644
--- a/tests/auto/corelib/io/largefile/tst_largefile.cpp
+++ b/tests/auto/corelib/io/largefile/tst_largefile.cpp
@@ -75,7 +75,7 @@ public:
#elif defined(Q_OS_MAC)
// HFS+ does not support sparse files, so we limit file size for the test
// on Mac OS.
- maxSizeBits = 32; // 4 GiB
+ maxSizeBits = 24; // 16 MiB
#else
maxSizeBits = 24; // 16 MiB
#endif