Skip to content
This repository was archived by the owner on Oct 10, 2023. It is now read-only.

Commit b90ca6b

Browse files
author
Alexander Lakhin
committed
Merge branch 'master' into 'master'
Revert /dev/shm manipulations See merge request automation/pg-tests!1341
2 parents de10005 + f283b70 commit b90ca6b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

tests_install/test_installcheck.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,6 @@ def test_make_check(self, request):
8181
print("Test performed with pgpro-online-upgrade")
8282
run_test_ou = True
8383

84-
if edition == "ent" and version == "13" and self.system == "Linux":
85-
os.system('mount -t tmpfs -o remount,size=1000M tmpfs /dev/shm')
86-
8784
if self.system == 'Windows':
8885
if os.path.exists(pginst.get_default_bin_path()):
8986
# Refresh environment to get correct PYTHONHOME

tests_install/test_multimaster_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ def test_multimaster_install(self, request):
526526
return
527527
# Resize /dev/shm under Linux
528528
if self.system == 'Linux':
529-
os.system('mount -t tmpfs -o remount,size=2500M tmpfs /dev/shm')
529+
os.system('mount -t tmpfs -o remount,size=1500M tmpfs /dev/shm')
530530

531531
# Step 1
532532
pginst = PgInstall(product=name, edition=edition,

0 commit comments

Comments
 (0)