summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Russell <gabriel.russell@mongodb.com>2019-03-11 14:31:06 -0400
committerGabriel Russell <gabriel.russell@mongodb.com>2019-03-22 13:14:12 -0400
commit140d16718a0894b818418f6238836d3fcb4072bf (patch)
tree6ef1ff7d707cae757071aa786d3b54f3caf6cce9
parentf3284e0d523db5012a1c5fadd707c33a62af8599 (diff)
downloadmongo-140d16718a0894b818418f6238836d3fcb4072bf.tar.gz
SERVER-36750 blacklist memory.js on ppc64le in memory variants
-rw-r--r--etc/evergreen.yml6
-rw-r--r--jstests/serial_run/memory.js3
2 files changed, 6 insertions, 3 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 9b5adce3355..d87343e8eca 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -7852,7 +7852,7 @@ buildvariants:
push_name: linux
push_arch: ppc64le-enterprise-ubuntu1604
compile_flags: --ssl MONGO_DISTMOD=ubuntu1604 -j$(echo "$(grep -c processor /proc/cpuinfo)/2" | bc) --release CCFLAGS="-mcpu=power8 -mtune=power8 -mcmodel=medium" --variables-files=etc/scons/mongodbtoolchain_gcc.vars
- test_flags: --excludeWithAnyTags=requires_mmapv1
+ test_flags: --excludeWithAnyTags=requires_mmapv1,blacklist_from_ppc64le
resmoke_jobs_max: 2
has_packages: true
packager_script: packager_enterprise.py
@@ -10524,9 +10524,9 @@ buildvariants:
batchtime: 1440 # 1 day
stepback: false
expansions:
- test_flags: --excludeWithAnyTags=requires_mmapv1
# We need to compensate for SMT8 setting the cpu count very high and lower the amount of parallelism down
compile_flags: --ssl MONGO_DISTMOD=rhel71 --release -j$(echo "$(grep -c processor /proc/cpuinfo)/2" | bc) CCFLAGS="-mcpu=power8 -mtune=power8 -mcmodel=medium" --variables-files=etc/scons/mongodbtoolchain_gcc.vars
+ test_flags: --excludeWithAnyTags=requires_mmapv1,blacklist_from_ppc64le
resmoke_jobs_factor: 0.25
has_packages: true
packager_script: packager_enterprise.py
@@ -12138,7 +12138,7 @@ buildvariants:
expansions:
# We need to compensate for SMT8 setting the cpu count very high and lower the amount of parallelism down
compile_flags: --dbg=on --opt=on --ssl MONGO_DISTMOD=rhel71 -j$(echo "$(grep -c processor /proc/cpuinfo)/2" | bc) CCFLAGS="-mcpu=power8 -mtune=power8 -mcmodel=medium" --variables-files=etc/scons/mongodbtoolchain_gcc.vars
- test_flags: --storageEngine=inMemory --excludeWithAnyTags=requires_persistence,requires_mmapv1,requires_journaling,uses_transactions
+ test_flags: --storageEngine=inMemory --excludeWithAnyTags=requires_persistence,requires_mmapv1,requires_journaling,uses_transactions,blacklist_from_ppc64le
tooltags: "ssl sasl"
resmoke_jobs_factor: 0.25
build_mongoreplay: true
diff --git a/jstests/serial_run/memory.js b/jstests/serial_run/memory.js
index 3451800b89d..896004be3fd 100644
--- a/jstests/serial_run/memory.js
+++ b/jstests/serial_run/memory.js
@@ -1,3 +1,6 @@
+/*
+ * @tags: [blacklist_from_ppc64le]
+ */
var col = db.memoryTest;
var buildInfo = db.adminCommand("buildInfo");