mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
/run/shm is the general replacement for /dev/shm in newer distros
This commit is contained in:
parent
f8320210e7
commit
574227c90c
1 changed files with 2 additions and 2 deletions
|
@ -1462,7 +1462,7 @@ sub command_line_setup {
|
|||
# Search through list of locations that are known
|
||||
# to be "fast disks" to find a suitable location
|
||||
# Use --mem=<dir> as first location to look.
|
||||
my @tmpfs_locations= ($opt_mem, "/dev/shm", "/tmp");
|
||||
my @tmpfs_locations= ($opt_mem,"/run/shm", "/dev/shm", "/tmp");
|
||||
|
||||
foreach my $fs (@tmpfs_locations)
|
||||
{
|
||||
|
@ -6367,7 +6367,7 @@ Options to control directories to use
|
|||
mem Run testsuite in "memory" using tmpfs or ramdisk
|
||||
Attempts to find a suitable location
|
||||
using a builtin list of standard locations
|
||||
for tmpfs (/dev/shm)
|
||||
for tmpfs (/run/shm, /dev/shm, /tmp)
|
||||
The option can also be set using environment
|
||||
variable MTR_MEM=[DIR]
|
||||
clean-vardir Clean vardir if tests were successful and if
|
||||
|
|
Loading…
Reference in a new issue