This repository has been archived by the owner on Jul 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcondor_tests.cmd
45 lines (37 loc) · 1.81 KB
/
condor_tests.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#############################
##
## Example Condor job specification
##
##############################
# This is a comment.
# This defines what job universe we want the job to run in.
# 'vanilla' is the simplest option for basic command execution.
# Other universes that exist include 'standard', 'grid', 'java' and 'mpi'.
universe = vanilla
# This defines the path of the executable we want to run.
executable = /homes/gds/Documents/jscert/src/core/trunk/condor_tests.sh
# This specifies where data sent to STDOUT by the executable should be
# directed to.
#
# The Condor system can perform variable substitution in job specifications;
# the $(Process) string below will be replaced with the job's Process value.
# If we submit multiple jobs from this single specification (we do, as you
# will see later) then the Process value will be incremented for each job.
# For example, if we submit 100 jobs, then each job will have a different
# Process value, numbered in sequence from 0 to 99.
#
# If we were to instruct every job to redirect STDOUT to the same file, then
# data would be lost as each job would overwrite the same file in an
# uncontrolled manner. Thus, we direct STDOUT for each job to a uniquely
# named file.
output = /homes/gds/logs/testing.$(Process).out
# As above, but for STDERR.
error = /homes/gds/logs/testing.$(Process).err
# Condor can write a time-ordered log of events related to this job-set
# to a file we specify. This specifies where that file should be written.
log = /homes/gds/logs/testing.log
# This specifies what commandline arguments should be passed to the executable.
arguments =
# This specifies that the specification, as parsed up to this point, should be
# submitted 5 times. (If the number is omitted, the number '1' is assumed.)
queue 5