From: Paul F. <pa...@so...> - 2025-04-14 10:31:51
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=aa764f600ffa72f836720698fc27bfd4bd49dfc4 commit aa764f600ffa72f836720698fc27bfd4bd49dfc4 Author: Paul Floyd <pj...@wa...> Date: Mon Apr 14 12:30:52 2025 +0200 Illumos nightly: add conf files for Illumos Diff: --- nightly/conf/illumos.conf | 3 +++ nightly/conf/illumos.sendmail | 10 ++++++++++ 2 files changed, 13 insertions(+) diff --git a/nightly/conf/illumos.conf b/nightly/conf/illumos.conf new file mode 100644 index 0000000000..8654e9ad4d --- /dev/null +++ b/nightly/conf/illumos.conf @@ -0,0 +1,3 @@ +export ABT_DETAILS="Illumos x86" +export ABT_JOBS=4 +#export ABT_PERF="--tools=none,memcheck,callgrind,helgrind,cachegrind,drd,massif --reps=3 --vg=../valgrind-old --vg=../valgrind-new" diff --git a/nightly/conf/illumos.sendmail b/nightly/conf/illumos.sendmail new file mode 100755 index 0000000000..8b3e9bf326 --- /dev/null +++ b/nightly/conf/illumos.sendmail @@ -0,0 +1,10 @@ +#!/bin/sh + +subject=$1 +body=$2 +file=$3 +filename=$( basename $3 ) + +#(cat "$body" "$file") | mailx -s "$subject" -r "Paul Floyd <pj...@wa...>" val...@li... + +(cat "$body" "$file") | mailx -s "$subject" -r "Paul Floyd <pj...@wa...>" pj...@wa... |