Skip to content

Commit

Permalink
Prevent timeouts by lowering the number of trials for a test with asa…
Browse files Browse the repository at this point in the history
…n/valgrind (#26294)

Prevent timeouts by lowering the number of trials for a test with
asan/valgrind

[Reviewed by @dlongnecke-cray]
  • Loading branch information
jabraham17 authored Nov 21, 2024
2 parents 3aa3d8a + 9e7b9fa commit df1f0f4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/performance/memory/microMemoryAllocation.execopts
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
--printTime=false
#!/usr/bin/env bash
args="--printTime=false"
if [ "$CHPL_TEST_VGRND_EXE" == "on" ] || [ "${CHPL_SANITIZE_EXE:-none}" != "none" ]; then
args="$args --trials=1000"
fi
echo $args

0 comments on commit df1f0f4

Please sign in to comment.