"failstar" sounds like a name for a cruise liner from the 80s. As "*" isn't a desirable part of directory names, just name the whole thing "fail/", the core parts being stored in "fail/core/". Additionally fixing two build system dependency issues: - missing jobserver -> protomessages dependency - broken bochs -> fail dependency (add_custom_target DEPENDS only allows plain file dependencies ... cmake for the win) git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@956 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
22 lines
1.0 KiB
Bash
22 lines
1.0 KiB
Bash
#!/bin/bash
|
|
#
|
|
# fail-env.sh
|
|
# default values for several Fail* environment variables
|
|
# If you want to set your own defaults, or need a script to source from, e.g.,
|
|
# your ~/.bashrc, please copy this file and do not edit it in-place.
|
|
#
|
|
|
|
# A whitespace-separated list of hosts to rsync the experiment data to. This
|
|
# is not necessarily the same list as FAIL_EXPERIMENT_HOSTS (see below), as
|
|
# many hosts may share their homes via NFS.
|
|
export FAIL_DISTRIBUTE_HOSTS=${FAIL_DISTRIBUTE_HOSTS:='ios kos virtuos plutonium'}
|
|
|
|
# A whitespace-separated list of hosts to run experiments on. If the host name
|
|
# is followed by a ':' and a number, this specifies the number of clients to
|
|
# run on that host (defaults to #CPUs+1).
|
|
export FAIL_EXPERIMENT_HOSTS=${FAIL_EXPERIMENT_HOSTS:="plutonium uran virtuos ios:6 kos:6 bohrium polonium radon $(for hostnr in $(seq 100 254); do echo fiws$hostnr; done)"}
|
|
|
|
# A homedir-relative directory on the distribution hosts where all necessary
|
|
# Fail* ingredients reside (see multiple-clients.sh).
|
|
export FAIL_EXPERIMENT_TARGETDIR=.fail-experiment
|