Skip to content

Commit 7accfea

Browse files
committed
Add missing HTCondor commands
1 parent 5a5483b commit 7accfea

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

construct.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ specs:
2626
# Middleware
2727
- boto3
2828
- gfal2-util
29+
- htcondor-utils # [linux64]
2930
- nordugrid-arc
3031
- python-gfal2
32+
- python-htcondor # [linux64]
3133
- voms
3234
# Others
3335
- diraccfg

tests/test_cli.sh

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,26 @@ if ! (singularity --verbose --debug run -u lolcow || (singularity --verbose --de
5757
rc=1;
5858
fi
5959

60+
# For HTCondor
61+
if ! condor_submit -help; then
62+
echo "condor_submit -help not working";
63+
rc=1;
64+
fi
65+
if ! condor_history -help; then
66+
echo "condor_history -help not working";
67+
rc=1;
68+
fi
69+
if ! condor_q -help; then
70+
echo "condor_q -help not working";
71+
rc=1;
72+
fi
73+
if ! condor_rm -help; then
74+
echo "condor_rm -help not working";
75+
rc=1;
76+
fi
77+
if ! condor_transfer_data -help; then
78+
echo "condor_transfer_data -help not working";
79+
rc=1;
80+
fi
81+
6082
exit $rc

0 commit comments

Comments
 (0)