forked from DIRACGrid/DIRAC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: added system tests of jobs with input data and parametric with …
…input data
- Loading branch information
Showing
6 changed files
with
129 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env python | ||
############################################################################### | ||
# (c) Copyright 2019 CERN for the benefit of the LHCb Collaboration # | ||
# # | ||
# This software is distributed under the terms of the GNU General Public # | ||
# Licence version 3 (GPL Version 3), copied verbatim in the file "LICENSE". # | ||
# # | ||
# In applying this licence, CERN does not waive the privileges and immunities # | ||
# granted to it by virtue of its status as an Intergovernmental Organization # | ||
# or submit itself to any jurisdiction. # | ||
############################################################################### | ||
"""Script to run Executable application""" | ||
from os import system | ||
import sys | ||
|
||
# Main | ||
if __name__ == "__main__": | ||
sys.exit(int(system("""cat testInputFileSingleLocation.txt""") / 256)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env python | ||
############################################################################### | ||
# (c) Copyright 2019 CERN for the benefit of the LHCb Collaboration # | ||
# # | ||
# This software is distributed under the terms of the GNU General Public # | ||
# Licence version 3 (GPL Version 3), copied verbatim in the file "LICENSE". # | ||
# # | ||
# In applying this licence, CERN does not waive the privileges and immunities # | ||
# granted to it by virtue of its status as an Intergovernmental Organization # | ||
# or submit itself to any jurisdiction. # | ||
############################################################################### | ||
"""Script to run Executable application""" | ||
import sys | ||
from os import system | ||
|
||
# Main | ||
if __name__ == "__main__": | ||
sys.exit(int(system("""cat testInputFile.txt""") / 256)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
this is just a test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
this is just a test | ||
|
||
This file should be at /dteam/user/f/fstagni/test/testInputFileSingleLocation.txt in RAL-SE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters